Commit c008fa83 authored by Mateusz Kulikowski's avatar Mateusz Kulikowski Committed by Greg Kroah-Hartman

staging: rtl8192e: cmdpkt: Pass data as const void*

Signed-off-by: default avatarMateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d15fe3e0
...@@ -17,7 +17,8 @@ ...@@ -17,7 +17,8 @@
#include "r8192E_hw.h" #include "r8192E_hw.h"
#include "r8192E_cmdpkt.h" #include "r8192E_cmdpkt.h"
bool rtl92e_send_cmd_pkt(struct net_device *dev, u32 type, u8 *data, u32 len) bool rtl92e_send_cmd_pkt(struct net_device *dev, u32 type, const void *data,
u32 len)
{ {
bool rt_status = true; bool rt_status = true;
......
...@@ -15,5 +15,6 @@ ...@@ -15,5 +15,6 @@
#ifndef R819XUSB_CMDPKT_H #ifndef R819XUSB_CMDPKT_H
#define R819XUSB_CMDPKT_H #define R819XUSB_CMDPKT_H
bool rtl92e_send_cmd_pkt(struct net_device *dev, u32 type, u8 *data, u32 len); bool rtl92e_send_cmd_pkt(struct net_device *dev, u32 type, const void *data,
u32 len);
#endif #endif
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