diff options
author | Tobias Klauser | 2014-09-10 09:34:49 +0200 |
---|---|---|
committer | Greg Kroah-Hartman | 2014-09-11 14:56:51 -0700 |
commit | 46ef6886ac5324058898a4e84cad029f06de8b18 (patch) | |
tree | 483b23494ea50ea8ebed159e651d7d4dc3f4eb48 | |
parent | 1299b721d35532a5786ef665aa86e7d01446396d (diff) |
staging: vt6655: Remove unused member from struct vnt_private
The pci_state member of struct vnt_private is used nowhere in the code,
so remove it. Supposedly it was used to save the PCI configuration space
which is now done using pci_save_state().
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/vt6655/device.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/staging/vt6655/device.h b/drivers/staging/vt6655/device.h index 7db0404f6f2b..5e41b19dc127 100644 --- a/drivers/staging/vt6655/device.h +++ b/drivers/staging/vt6655/device.h @@ -333,10 +333,6 @@ typedef struct __device_opt { struct vnt_private { struct pci_dev *pcid; -#ifdef CONFIG_PM - u32 pci_state[16]; -#endif - // netdev struct net_device *dev; struct net_device_stats stats; |