staging: vt6655: device_main Replace DEVICE_INFO with size of pointer

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley 2014-08-10 15:47:02 +01:00 committed by Greg Kroah-Hartman
parent 6af4336e64
commit 1bd6375760

View file

@ -839,7 +839,7 @@ vt6655_probe(struct pci_dev *pcid, const struct pci_device_id *ent)
return -ENODEV;
}
dev = alloc_etherdev(sizeof(DEVICE_INFO));
dev = alloc_etherdev(sizeof(*pDevice));
pDevice = netdev_priv(dev);
@ -999,7 +999,7 @@ static void vt6655_init_info(struct pci_dev *pcid,
{
struct vnt_private *p;
memset(*ppDevice, 0, sizeof(DEVICE_INFO));
memset(*ppDevice, 0, sizeof(**ppDevice));
if (pDevice_Infos == NULL) {
pDevice_Infos = *ppDevice;