diff options
Diffstat (limited to 'drivers/atm/solos-pci.c')
| -rw-r--r-- | drivers/atm/solos-pci.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/drivers/atm/solos-pci.c b/drivers/atm/solos-pci.c index c8f2ca6d8b29..0df1a1c80b00 100644 --- a/drivers/atm/solos-pci.c +++ b/drivers/atm/solos-pci.c @@ -611,7 +611,7 @@ static struct attribute *solos_attrs[] = {  	NULL  }; -static struct attribute_group solos_attr_group = { +static const struct attribute_group solos_attr_group = {  	.attrs = solos_attrs,  	.name = "parameters",  }; @@ -628,7 +628,7 @@ static struct attribute *gpio_attrs[] = {  	NULL  }; -static struct attribute_group gpio_attr_group = { +static const struct attribute_group gpio_attr_group = {  	.attrs = gpio_attrs,  	.name = "gpio",  }; @@ -1187,7 +1187,7 @@ static int psend(struct atm_vcc *vcc, struct sk_buff *skb)  	return 0;  } -static struct atmdev_ops fpga_ops = { +static const struct atmdev_ops fpga_ops = {  	.open =		popen,  	.close =	pclose,  	.ioctl =	NULL, @@ -1476,7 +1476,7 @@ static void fpga_remove(struct pci_dev *dev)  	kfree(card);  } -static struct pci_device_id fpga_pci_tbl[] = { +static const struct pci_device_id fpga_pci_tbl[] = {  	{ 0x10ee, 0x0300, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },  	{ 0, }  }; |