Commit befabac2 authored by Dan Carpenter's avatar Dan Carpenter Committed by John W. Linville

wl1271_cmd.c: cleanup char => u8

This is just a clean up and doesn't make a functional difference.  It keeps the
lint checkers happy.
Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
Reviewed-by: default avatarKalle Valo <kalle.valo@nokia.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 79496738
...@@ -777,7 +777,7 @@ int wl1271_cmd_template_set(struct wl1271 *wl, u16 template_id, ...@@ -777,7 +777,7 @@ int wl1271_cmd_template_set(struct wl1271 *wl, u16 template_id,
return ret; return ret;
} }
static int wl1271_build_basic_rates(char *rates, u8 band) static int wl1271_build_basic_rates(u8 *rates, u8 band)
{ {
u8 index = 0; u8 index = 0;
...@@ -804,7 +804,7 @@ static int wl1271_build_basic_rates(char *rates, u8 band) ...@@ -804,7 +804,7 @@ static int wl1271_build_basic_rates(char *rates, u8 band)
return index; return index;
} }
static int wl1271_build_extended_rates(char *rates, u8 band) static int wl1271_build_extended_rates(u8 *rates, u8 band)
{ {
u8 index = 0; u8 index = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment