]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
staging: rtl8188eu: move return type to functions definition line
authorMichael Straube <straube.linux@gmail.com>
Sat, 30 Jun 2018 18:14:39 +0000 (20:14 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 2 Jul 2018 08:43:10 +0000 (10:43 +0200)
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>
drivers/staging/rtl8188eu/hal/hal_com.c

index b2ea3d435af09d6156b138c4dfc3c2dc82ba6e30..ca26a4f4dd869655a2d09d94e087024421749145 100644 (file)
@@ -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;