Commit c30d7973 authored by Forest Bond's avatar Forest Bond Committed by Greg Kroah-Hartman

Staging: vt6656: Rename hostap_set_hostapd, hostap_iotctl.

The functions hostap_set_hostapd, hostap_iotctl clashed with functions of the
same name with CONFIG_HOSTAP=y and/or CONFIG_VT6655=y.
Signed-off-by: default avatarForest Bond <forest@alittletooquiet.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 9a0e756c
...@@ -178,7 +178,7 @@ static int hostap_disable_hostapd(PSDevice pDevice, int rtnl_locked) ...@@ -178,7 +178,7 @@ static int hostap_disable_hostapd(PSDevice pDevice, int rtnl_locked)
* *
*/ */
int hostap_set_hostapd(PSDevice pDevice, int val, int rtnl_locked) int vt6656_hostap_set_hostapd(PSDevice pDevice, int val, int rtnl_locked)
{ {
if (val < 0 || val > 1) if (val < 0 || val > 1)
return -EINVAL; return -EINVAL;
...@@ -744,7 +744,7 @@ static int hostap_get_encryption(PSDevice pDevice, ...@@ -744,7 +744,7 @@ static int hostap_get_encryption(PSDevice pDevice,
/* /*
* Description: * Description:
* hostap_ioctl main function supported for hostap deamon. * vt6656_hostap_ioctl main function supported for hostap deamon.
* *
* Parameters: * Parameters:
* In: * In:
...@@ -756,7 +756,7 @@ static int hostap_get_encryption(PSDevice pDevice, ...@@ -756,7 +756,7 @@ static int hostap_get_encryption(PSDevice pDevice,
* *
*/ */
int hostap_ioctl(PSDevice pDevice, struct iw_point *p) int vt6656_hostap_ioctl(PSDevice pDevice, struct iw_point *p)
{ {
struct viawget_hostapd_param *param; struct viawget_hostapd_param *param;
int ret = 0; int ret = 0;
...@@ -844,7 +844,7 @@ int hostap_ioctl(PSDevice pDevice, struct iw_point *p) ...@@ -844,7 +844,7 @@ int hostap_ioctl(PSDevice pDevice, struct iw_point *p)
return -EOPNOTSUPP; return -EOPNOTSUPP;
default: default:
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "hostap_ioctl: unknown cmd=%d\n", DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "vt6656_hostap_ioctl: unknown cmd=%d\n",
(int)param->cmd); (int)param->cmd);
return -EOPNOTSUPP; return -EOPNOTSUPP;
break; break;
......
...@@ -61,8 +61,8 @@ ...@@ -61,8 +61,8 @@
#define ARPHRD_IEEE80211 801 #define ARPHRD_IEEE80211 801
#endif #endif
int hostap_set_hostapd(PSDevice pDevice, int val, int rtnl_locked); int vt6656_hostap_set_hostapd(PSDevice pDevice, int val, int rtnl_locked);
int hostap_ioctl(PSDevice pDevice, struct iw_point *p); int vt6656_hostap_ioctl(PSDevice pDevice, struct iw_point *p);
#endif // __HOSTAP_H__ #endif // __HOSTAP_H__
......
...@@ -412,7 +412,7 @@ int private_ioctl(PSDevice pDevice, struct ifreq *rq) { ...@@ -412,7 +412,7 @@ int private_ioctl(PSDevice pDevice, struct ifreq *rq) {
break; break;
}; };
if (sValue.dwValue == 1) { if (sValue.dwValue == 1) {
if (hostap_set_hostapd(pDevice, 1, 1) == 0){ if (vt6656_hostap_set_hostapd(pDevice, 1, 1) == 0){
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Enable HOSTAP\n"); DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Enable HOSTAP\n");
} }
else { else {
...@@ -421,7 +421,7 @@ int private_ioctl(PSDevice pDevice, struct ifreq *rq) { ...@@ -421,7 +421,7 @@ int private_ioctl(PSDevice pDevice, struct ifreq *rq) {
} }
} }
else { else {
hostap_set_hostapd(pDevice, 0, 1); vt6656_hostap_set_hostapd(pDevice, 0, 1);
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Disable HOSTAP\n"); DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Disable HOSTAP\n");
} }
......
...@@ -2069,7 +2069,7 @@ static int device_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) { ...@@ -2069,7 +2069,7 @@ static int device_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) {
rc = 0; rc = 0;
} }
rc = hostap_ioctl(pDevice, &wrq->u.data); rc = vt6656_hostap_ioctl(pDevice, &wrq->u.data);
break; break;
case IOCTL_CMD_WPA: case IOCTL_CMD_WPA:
......
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