diff options
author | Johannes Berg <johannes.berg@intel.com> | 2011-05-04 10:50:38 -0400 |
---|---|---|
committer | Wey-Yi Guy <wey-yi.w.guy@intel.com> | 2011-05-13 13:31:52 -0400 |
commit | 3fa507386dc4cdf731344cb9361e9cca373cedb9 (patch) | |
tree | 3368a5e3f9dcb39039aafeab25165091c62c5f5b /drivers/net/wireless/iwlwifi/iwl-led.c | |
parent | 6b86bd62a505a4a9739474f00f8088395b7a80ba (diff) |
iwlagn: prepare for multi-TB commands
In a subsequent patch, I want to make commands use
multiple TBs in a TFD. This is a simple change to
prepare the data structures for this, with as of
now still just a single TB supported.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-led.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-led.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-led.c b/drivers/net/wireless/iwlwifi/iwl-led.c index 439187f903c9..7c23beb49d7c 100644 --- a/drivers/net/wireless/iwlwifi/iwl-led.c +++ b/drivers/net/wireless/iwlwifi/iwl-led.c | |||
@@ -107,8 +107,8 @@ static int iwl_send_led_cmd(struct iwl_priv *priv, struct iwl_led_cmd *led_cmd) | |||
107 | { | 107 | { |
108 | struct iwl_host_cmd cmd = { | 108 | struct iwl_host_cmd cmd = { |
109 | .id = REPLY_LEDS_CMD, | 109 | .id = REPLY_LEDS_CMD, |
110 | .len = sizeof(struct iwl_led_cmd), | 110 | .len = { sizeof(struct iwl_led_cmd), }, |
111 | .data = led_cmd, | 111 | .data = { led_cmd, }, |
112 | .flags = CMD_ASYNC, | 112 | .flags = CMD_ASYNC, |
113 | .callback = NULL, | 113 | .callback = NULL, |
114 | }; | 114 | }; |