aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6656/ioctl.c
diff options
context:
space:
mode:
authorForest Bond <forest@alittletooquiet.net>2010-04-17 11:03:38 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-05-11 11:35:56 -0700
commitc30d7973f22ea3f8b3e5d1d7215b3f2ff8f5e934 (patch)
treef837a864bfd1909e52c15244d8a3109865826f9e /drivers/staging/vt6656/ioctl.c
parent9a0e756c5280750c23bd44d2b855a1f5442ea7b4 (diff)
downloadkernel_samsung_smdk4412-c30d7973f22ea3f8b3e5d1d7215b3f2ff8f5e934.zip
kernel_samsung_smdk4412-c30d7973f22ea3f8b3e5d1d7215b3f2ff8f5e934.tar.gz
kernel_samsung_smdk4412-c30d7973f22ea3f8b3e5d1d7215b3f2ff8f5e934.tar.bz2
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: Forest Bond <forest@alittletooquiet.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/vt6656/ioctl.c')
-rw-r--r--drivers/staging/vt6656/ioctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/vt6656/ioctl.c b/drivers/staging/vt6656/ioctl.c
index d7a78f2..08d5429 100644
--- a/drivers/staging/vt6656/ioctl.c
+++ b/drivers/staging/vt6656/ioctl.c
@@ -412,7 +412,7 @@ int private_ioctl(PSDevice pDevice, struct ifreq *rq) {
break;
};
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");
}
else {
@@ -421,7 +421,7 @@ int private_ioctl(PSDevice pDevice, struct ifreq *rq) {
}
}
else {
- hostap_set_hostapd(pDevice, 0, 1);
+ vt6656_hostap_set_hostapd(pDevice, 0, 1);
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Disable HOSTAP\n");
}