Commit 70afb8e5 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6655: remove multiple instances of driver loading.

The driver can only load once from the instance provided
by pci_dev.

struct vnt_private next, prev and pDevice_Infos are removed.
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c28f3253
...@@ -331,9 +331,6 @@ typedef struct __device_opt { ...@@ -331,9 +331,6 @@ typedef struct __device_opt {
} OPTIONS, *POPTIONS; } OPTIONS, *POPTIONS;
struct vnt_private { struct vnt_private {
struct vnt_private *next;
struct vnt_private *prev;
struct pci_dev *pcid; struct pci_dev *pcid;
#ifdef CONFIG_PM #ifdef CONFIG_PM
......
...@@ -247,7 +247,6 @@ DEVICE_PARAM(bDiversityANTEnable, "ANT diversity mode"); ...@@ -247,7 +247,6 @@ DEVICE_PARAM(bDiversityANTEnable, "ANT diversity mode");
// //
static int device_nics = 0; static int device_nics = 0;
static struct vnt_private *pDevice_Infos = NULL;
static struct net_device *root_device_dev = NULL; static struct net_device *root_device_dev = NULL;
static CHIP_INFO chip_info_table[] = { static CHIP_INFO chip_info_table[] = {
...@@ -979,19 +978,8 @@ static void vt6655_init_info(struct pci_dev *pcid, ...@@ -979,19 +978,8 @@ static void vt6655_init_info(struct pci_dev *pcid,
struct vnt_private **ppDevice, struct vnt_private **ppDevice,
PCHIP_INFO pChip_info) PCHIP_INFO pChip_info)
{ {
struct vnt_private *p;
memset(*ppDevice, 0, sizeof(**ppDevice)); memset(*ppDevice, 0, sizeof(**ppDevice));
if (pDevice_Infos == NULL) {
pDevice_Infos = *ppDevice;
} else {
for (p = pDevice_Infos; p->next != NULL; p = p->next)
do {} while (0);
p->next = *ppDevice;
(*ppDevice)->prev = p;
}
(*ppDevice)->pcid = pcid; (*ppDevice)->pcid = pcid;
(*ppDevice)->chip_id = pChip_info->chip_id; (*ppDevice)->chip_id = pChip_info->chip_id;
(*ppDevice)->io_size = pChip_info->io_size; (*ppDevice)->io_size = pChip_info->io_size;
...@@ -1030,9 +1018,11 @@ static bool device_get_pci_info(struct vnt_private *pDevice, ...@@ -1030,9 +1018,11 @@ static bool device_get_pci_info(struct vnt_private *pDevice,
static void device_free_info(struct vnt_private *pDevice) static void device_free_info(struct vnt_private *pDevice)
{ {
struct vnt_private *ptr;
struct net_device *dev = pDevice->dev; struct net_device *dev = pDevice->dev;
if (!pDevice)
return;
ASSERT(pDevice); ASSERT(pDevice);
//2008-0714-01<Add>by chester //2008-0714-01<Add>by chester
device_release_WPADEV(pDevice); device_release_WPADEV(pDevice);
...@@ -1042,21 +1032,6 @@ static void device_free_info(struct vnt_private *pDevice) ...@@ -1042,21 +1032,6 @@ static void device_free_info(struct vnt_private *pDevice)
if (wpa_set_wpadev(pDevice, 0) != 0) if (wpa_set_wpadev(pDevice, 0) != 0)
pr_err("unregister wpadev fail?\n"); pr_err("unregister wpadev fail?\n");
if (pDevice_Infos == NULL)
return;
for (ptr = pDevice_Infos; ptr && (ptr != pDevice); ptr = ptr->next)
do {} while (0);
if (ptr == pDevice) {
if (ptr == pDevice_Infos)
pDevice_Infos = ptr->next;
else
ptr->prev->next = ptr->next;
} else {
pr_err("info struct not found\n");
return;
}
#ifdef HOSTAP #ifdef HOSTAP
if (dev) if (dev)
vt6655_hostap_set_hostapd(pDevice, 0, 0); vt6655_hostap_set_hostapd(pDevice, 0, 0);
......
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