From 069385fcb32bed6fcbc1457b63733c802920bb84 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Tue, 26 May 2009 12:58:00 +0000 Subject: ops can not be const because of the pci conf1/conf2 hackery we do. trivial patch, just removes the warnings like coreboot-v2/src/southbridge/intel/i82801xx/i82801xx_ac97.c:73: warning: initialization discards qualifiers from pointer target type Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4302 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/southbridge/intel/i82801xx/i82801xx_ac97.c | 2 +- src/southbridge/intel/i82801xx/i82801xx_nic.c | 2 +- src/southbridge/intel/i82801xx/i82801xx_smbus.c | 2 +- src/southbridge/intel/i82801xx/i82801xx_usb.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/southbridge/intel/i82801xx/i82801xx_ac97.c b/src/southbridge/intel/i82801xx/i82801xx_ac97.c index 70f5511f9d..ace04ffaeb 100644 --- a/src/southbridge/intel/i82801xx/i82801xx_ac97.c +++ b/src/southbridge/intel/i82801xx/i82801xx_ac97.c @@ -27,7 +27,7 @@ #include #include "i82801xx.h" -static const struct device_operations ac97_ops = { +static struct device_operations ac97_ops = { .read_resources = pci_dev_read_resources, .set_resources = pci_dev_set_resources, .enable_resources = pci_dev_enable_resources, diff --git a/src/southbridge/intel/i82801xx/i82801xx_nic.c b/src/southbridge/intel/i82801xx/i82801xx_nic.c index c8a1e9def7..3728d28bd7 100644 --- a/src/southbridge/intel/i82801xx/i82801xx_nic.c +++ b/src/southbridge/intel/i82801xx/i82801xx_nic.c @@ -25,7 +25,7 @@ #include #include -static const struct device_operations nic_ops = { +static struct device_operations nic_ops = { .read_resources = pci_dev_read_resources, .set_resources = pci_dev_set_resources, .enable_resources = pci_dev_enable_resources, diff --git a/src/southbridge/intel/i82801xx/i82801xx_smbus.c b/src/southbridge/intel/i82801xx/i82801xx_smbus.c index 2173104949..1608650be5 100644 --- a/src/southbridge/intel/i82801xx/i82801xx_smbus.c +++ b/src/southbridge/intel/i82801xx/i82801xx_smbus.c @@ -38,7 +38,7 @@ static int smbus_read_byte(struct bus *bus, device_t dev, u8 address) return do_smbus_read_byte(res->base, device, address); } -static const struct smbus_bus_operations lops_smbus_bus = { +static struct smbus_bus_operations lops_smbus_bus = { .read_byte = smbus_read_byte, }; diff --git a/src/southbridge/intel/i82801xx/i82801xx_usb.c b/src/southbridge/intel/i82801xx/i82801xx_usb.c index 7bb424ff14..74bbbee17c 100644 --- a/src/southbridge/intel/i82801xx/i82801xx_usb.c +++ b/src/southbridge/intel/i82801xx/i82801xx_usb.c @@ -31,7 +31,7 @@ static void usb_init(struct device *dev) /* TODO: Any init needed? Some ports have it, others don't. */ } -static const struct device_operations usb_ops = { +static struct device_operations usb_ops = { .read_resources = pci_dev_read_resources, .set_resources = pci_dev_set_resources, .enable_resources = pci_dev_enable_resources, -- cgit v1.2.3