aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8192e/rtl8192e/r8192E_cmdpkt.h
diff options
context:
space:
mode:
authorMateusz Kulikowski <mateusz.kulikowski@gmail.com>2015-10-19 22:00:18 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-10-24 19:23:13 -0700
commitd15fe3e01989df34c5afc0d61fb53337484872b0 (patch)
tree33b51a65ed4bf579b775a1f2ecad7b107a8e33a6 /drivers/staging/rtl8192e/rtl8192e/r8192E_cmdpkt.h
parentstaging: rtl8192e: cmdpkt: Simplify argument names (diff)
downloadlinux-dev-d15fe3e01989df34c5afc0d61fb53337484872b0.tar.xz
linux-dev-d15fe3e01989df34c5afc0d61fb53337484872b0.zip
staging: rtl8192e: cmdpkt: Reorder arguments
Use send_cmd_pkt(dev, type, data , size) order to avoid confusion Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8192e/rtl8192e/r8192E_cmdpkt.h')
-rw-r--r--drivers/staging/rtl8192e/rtl8192e/r8192E_cmdpkt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_cmdpkt.h b/drivers/staging/rtl8192e/rtl8192e/r8192E_cmdpkt.h
index 1acf09933e8e..67b3f609f0ee 100644
--- a/drivers/staging/rtl8192e/rtl8192e/r8192E_cmdpkt.h
+++ b/drivers/staging/rtl8192e/rtl8192e/r8192E_cmdpkt.h
@@ -15,5 +15,5 @@
#ifndef R819XUSB_CMDPKT_H
#define R819XUSB_CMDPKT_H
-bool rtl92e_send_cmd_pkt(struct net_device *dev, u8 *data, u32 type, u32 len);
+bool rtl92e_send_cmd_pkt(struct net_device *dev, u32 type, u8 *data, u32 len);
#endif