|
@@ -112,7 +112,7 @@ static const struct pci_device_id rtl8192_pci_id_tbl[] __devinitdata = {
|
|
|
{}
|
|
|
};
|
|
|
|
|
|
-static char* ifname = "wlan%d";
|
|
|
+static char ifname[IFNAMSIZ] = "wlan%d";
|
|
|
static int hwwep = 1; //default use hw. set 0 to use software security
|
|
|
static int channels = 0x3fff;
|
|
|
|
|
@@ -123,7 +123,7 @@ MODULE_DEVICE_TABLE(pci, rtl8192_pci_id_tbl);
|
|
|
MODULE_DESCRIPTION("Linux driver for Realtek RTL819x WiFi cards");
|
|
|
|
|
|
|
|
|
-module_param(ifname, charp, S_IRUGO|S_IWUSR );
|
|
|
+module_param_string(ifname, ifname, sizeof(ifname), S_IRUGO|S_IWUSR);
|
|
|
//module_param(hwseqnum,int, S_IRUGO|S_IWUSR);
|
|
|
module_param(hwwep,int, S_IRUGO|S_IWUSR);
|
|
|
module_param(channels,int, S_IRUGO|S_IWUSR);
|
|
@@ -6446,7 +6446,7 @@ static int __devinit rtl8192_pci_probe(struct pci_dev *pdev,
|
|
|
|
|
|
if (dev_alloc_name(dev, ifname) < 0){
|
|
|
RT_TRACE(COMP_INIT, "Oops: devname already taken! Trying wlan%%d...\n");
|
|
|
- ifname = "wlan%d";
|
|
|
+ strcpy(ifname, "wlan%d");
|
|
|
dev_alloc_name(dev, ifname);
|
|
|
}
|
|
|
|