mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 03:24:19 +02:00
staging: rtl8192e: cmdpkt: Pass data as const void*
Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d15fe3e019
commit
c008fa83c4
|
|
@ -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 @@
|
||||||
#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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user