Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 236477
b: refs/heads/master
c: e83750e
h: refs/heads/master
i:
  236475: bd9d913
v: v3
  • Loading branch information
Luis R. Rodriguez authored and Greg Kroah-Hartman committed Mar 14, 2011
1 parent 99b51a0 commit 29a66d3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c9478eaf5e78c6379fab320eac98f9a878efd579
refs/heads/master: e83750e79169e860aa1eb9077084e67b7ce5d86b
4 changes: 2 additions & 2 deletions trunk/drivers/staging/ath6kl/include/common_drv.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ struct hci_transport_callbacks {
void (*cleanupTransport)(void *ar);
};

typedef struct {
struct hci_transport_misc_handles {
void *netDevice;
void *hifDevice;
void *htcHandle;
} HCI_TRANSPORT_MISC_HANDLES;
};

/* HTC TX packet tagging definitions */
#define AR6K_CONTROL_PKT_TAG HTC_TX_PACKET_TAG_USER_DEFINED
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/ath6kl/os/linux/ar6000_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -2723,7 +2723,7 @@ int ar6000_init(struct net_device *dev)

#ifdef EXPORT_HCI_BRIDGE_INTERFACE
if (setuphci && (NULL != ar6kHciTransCallbacks.setupTransport)) {
HCI_TRANSPORT_MISC_HANDLES hciHandles;
struct hci_transport_misc_handles hciHandles;

hciHandles.netDevice = ar->arNetDev;
hciHandles.hifDevice = ar->arHifDevice;
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/ath6kl/os/linux/hci_bridge.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ struct ar6k_hci_bridge_info {
u8 *pHTCStructAlloc;
spinlock_t BridgeLock;
#ifdef EXPORT_HCI_BRIDGE_INTERFACE
HCI_TRANSPORT_MISC_HANDLES HCITransHdl;
struct hci_transport_misc_handles HCITransHdl;
#else
AR_SOFTC_T *ar;
#endif /* EXPORT_HCI_BRIDGE_INTERFACE */
Expand Down Expand Up @@ -488,7 +488,7 @@ int ar6000_setup_hci(AR_SOFTC_T *ar)
A_MEMZERO(pHcidevInfo, sizeof(struct ar6k_hci_bridge_info));
#ifdef EXPORT_HCI_BRIDGE_INTERFACE
g_pHcidevInfo = pHcidevInfo;
pHcidevInfo->HCITransHdl = *(HCI_TRANSPORT_MISC_HANDLES *)ar;
pHcidevInfo->HCITransHdl = *(struct hci_transport_misc_handles *)ar;
#else
ar->hcidev_info = pHcidevInfo;
pHcidevInfo->ar = ar;
Expand Down

0 comments on commit 29a66d3

Please sign in to comment.