ce02f770a03e8d093d544220c572bdb6f278c144
[openwrt.git] / target / linux / omap24xx / patches-2.6.38 / 410-hci-h4p-fixes.patch
1 Index: linux-2.6.38-rc7/drivers/bluetooth/hci_h4p/core.c
2 ===================================================================
3 --- linux-2.6.38-rc7.orig/drivers/bluetooth/hci_h4p/core.c      2011-03-07 15:32:55.783737501 +0100
4 +++ linux-2.6.38-rc7/drivers/bluetooth/hci_h4p/core.c   2011-03-07 15:33:09.851047680 +0100
5 @@ -36,9 +36,9 @@
6  #include <linux/clk.h>
7  #include <linux/gpio.h>
8  
9 -#include <mach/hardware.h>
10 -#include <mach/board.h>
11 -#include <mach/irqs.h>
12 +#include <plat/hardware.h>
13 +#include <plat/board.h>
14 +#include <plat/irqs.h>
15  #include <plat/serial.h>
16  
17  #include <net/bluetooth/bluetooth.h>
18 Index: linux-2.6.38-rc7/drivers/bluetooth/hci_h4p/hci_h4p.h
19 ===================================================================
20 --- linux-2.6.38-rc7.orig/drivers/bluetooth/hci_h4p/hci_h4p.h   2011-03-07 15:32:55.766739543 +0100
21 +++ linux-2.6.38-rc7/drivers/bluetooth/hci_h4p/hci_h4p.h        2011-03-07 15:33:09.852047560 +0100
22 @@ -21,7 +21,7 @@
23   *
24   */
25  
26 -#include <mach/board.h>
27 +#include <plat/board.h>
28  
29  #include <net/bluetooth/bluetooth.h>
30  #include <net/bluetooth/hci_core.h>
31 Index: linux-2.6.38-rc7/drivers/bluetooth/hci_h4p/sysfs.c
32 ===================================================================
33 --- linux-2.6.38-rc7.orig/drivers/bluetooth/hci_h4p/sysfs.c     2011-03-07 15:32:55.807734619 +0100
34 +++ linux-2.6.38-rc7/drivers/bluetooth/hci_h4p/sysfs.c  2011-03-07 15:33:09.852047560 +0100
35 @@ -48,15 +48,8 @@ static ssize_t hci_h4p_store_bdaddr(stru
36                 return -EINVAL;
37         }
38  
39 -       //for (i = 0; i < 6; i++)
40 -               //info->bdaddr[i] = bdaddr[i] & 0xff;
41 -
42 -       info->bdaddr[0] = 0x00;
43 -       info->bdaddr[1] = 0x1D;
44 -       info->bdaddr[2] = 0x6E;
45 -       info->bdaddr[3] = 0xD4;
46 -       info->bdaddr[4] = 0xF0;
47 -       info->bdaddr[5] = 0x37;
48 +       for (i = 0; i < 6; i++)
49 +               info->bdaddr[i] = bdaddr[i] & 0xff;
50  
51         return count;
52  }