Skip to content

Commit

Permalink
staging: rtl8188eu: move return type to functions definition line
Browse files Browse the repository at this point in the history
The return type of a function should be on the same line as the
definition.

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Michael Straube authored and Greg Kroah-Hartman committed Jul 2, 2018
1 parent 3a26036 commit f33f230
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/staging/rtl8188eu/hal/hal_com.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ void dump_chip_info(struct HAL_VERSION chip_vers)

#define CHAN_PLAN_HW 0x80

u8 /* return the final channel plan decision */
hal_com_get_channel_plan(struct adapter *padapter, u8 hw_channel_plan,
u8 sw_channel_plan, u8 def_channel_plan,
bool load_fail)
/* return the final channel plan decision */
u8 hal_com_get_channel_plan(struct adapter *padapter, u8 hw_channel_plan,
u8 sw_channel_plan, u8 def_channel_plan,
bool load_fail)
{
u8 sw_cfg;
u8 chnlplan;
Expand Down

0 comments on commit f33f230

Please sign in to comment.