Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6792b5ec8d9e723e4689fd5b16cfa52603985f43
Commit:     6792b5ec8d9e723e4689fd5b16cfa52603985f43
Parent:     5e23b923da03de7e41f00f5664ae22c4f7dcd2a3
Author:     Dave Young <[EMAIL PROTECTED]>
AuthorDate: Sat Oct 20 14:15:39 2007 +0200
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Mon Oct 22 02:59:46 2007 -0700

    [Bluetooth] Fix wrong argument in debug code of HIDP
    
    In the debug code of the hidp_queue_report function, the device
    variable does not exist, replace it with session->hid.
    
    Signed-off-by: Dave Young <[EMAIL PROTECTED]>
    Signed-off-by: Marcel Holtmann <[EMAIL PROTECTED]>
---
 net/bluetooth/hidp/core.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/bluetooth/hidp/core.c b/net/bluetooth/hidp/core.c
index 66c7369..4bbacdd 100644
--- a/net/bluetooth/hidp/core.c
+++ b/net/bluetooth/hidp/core.c
@@ -247,7 +247,7 @@ static inline int hidp_queue_report(struct hidp_session 
*session, unsigned char
 {
        struct sk_buff *skb;
 
-       BT_DBG("session %p hid %p data %p size %d", session, device, data, 
size);
+       BT_DBG("session %p hid %p data %p size %d", session, session->hid, 
data, size);
 
        if (!(skb = alloc_skb(size + 1, GFP_ATOMIC))) {
                BT_ERR("Can't allocate memory for new frame");
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to