diff options
Diffstat (limited to 'drivers/bluetooth/btmrvl_drv.h')
-rw-r--r-- | drivers/bluetooth/btmrvl_drv.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/bluetooth/btmrvl_drv.h b/drivers/bluetooth/btmrvl_drv.h index bed0ba630235..90bda50dc446 100644 --- a/drivers/bluetooth/btmrvl_drv.h +++ b/drivers/bluetooth/btmrvl_drv.h | |||
@@ -76,6 +76,7 @@ struct btmrvl_private { | |||
76 | int (*hw_host_to_card) (struct btmrvl_private *priv, | 76 | int (*hw_host_to_card) (struct btmrvl_private *priv, |
77 | u8 *payload, u16 nb); | 77 | u8 *payload, u16 nb); |
78 | int (*hw_wakeup_firmware) (struct btmrvl_private *priv); | 78 | int (*hw_wakeup_firmware) (struct btmrvl_private *priv); |
79 | int (*hw_process_int_status) (struct btmrvl_private *priv); | ||
79 | spinlock_t driver_lock; /* spinlock used by driver */ | 80 | spinlock_t driver_lock; /* spinlock used by driver */ |
80 | #ifdef CONFIG_DEBUG_FS | 81 | #ifdef CONFIG_DEBUG_FS |
81 | void *debugfs_data; | 82 | void *debugfs_data; |
@@ -118,13 +119,13 @@ struct btmrvl_cmd { | |||
118 | __le16 ocf_ogf; | 119 | __le16 ocf_ogf; |
119 | u8 length; | 120 | u8 length; |
120 | u8 data[4]; | 121 | u8 data[4]; |
121 | } __attribute__ ((packed)); | 122 | } __packed; |
122 | 123 | ||
123 | struct btmrvl_event { | 124 | struct btmrvl_event { |
124 | u8 ec; /* event counter */ | 125 | u8 ec; /* event counter */ |
125 | u8 length; | 126 | u8 length; |
126 | u8 data[4]; | 127 | u8 data[4]; |
127 | } __attribute__ ((packed)); | 128 | } __packed; |
128 | 129 | ||
129 | /* Prototype of global function */ | 130 | /* Prototype of global function */ |
130 | 131 | ||