0
0
Fork 0
hgicf/hgic_fmac/ctrl.h

20 lines
661 B
C
Raw Permalink Normal View History

2023-05-16 09:13:19 +00:00
#ifndef _HGICF_CTRL_H_
#define _HGICF_CTRL_H_
#ifdef __RTOS__
int hgicf_ioctl(struct net_device *dev, u32 cmd, u32 param1, u32 param2);
#else
int hgicf_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd);
2023-10-12 23:37:43 +00:00
int hgicf_ioctl_set_proc(struct net_device *dev, struct iwreq *wrqin);
int hgicf_ioctl_get_proc(struct net_device *dev, struct iwreq *wrqin);
int hgicf_ioctl_stat(struct net_device *dev, struct iwreq *wrqin);
int hgicf_ioctl_e2p(struct net_device *dev, struct iwreq *wrqin);
int hgicf_ioctl_savecfg(struct net_device *dev, struct iwreq *wrqin);
int hgicf_ioctl_scan(struct net_device *dev, struct iwreq *wrqin);
2023-05-16 09:13:19 +00:00
#endif
2023-10-12 23:37:43 +00:00
2023-05-16 09:13:19 +00:00
#endif