mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 17:18:05 -04:00
20 lines
521 B
C
Executable file
20 lines
521 B
C
Executable file
/******************************************************************************
|
|
*
|
|
* Copyright (c) 2014 - 2016 Samsung Electronics Co., Ltd. All rights reserved
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#ifndef __MX_IOCTL_H__
|
|
#define __MX_IOCTL_H__
|
|
|
|
#include <linux/if.h>
|
|
#include <linux/netdevice.h>
|
|
|
|
struct android_wifi_priv_cmd {
|
|
char *buf;
|
|
int used_len;
|
|
int total_len;
|
|
};
|
|
|
|
int slsi_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
|
|
#endif /* __MX_IOCTL_H__ */
|