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 <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4302 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2009-05-26 12:58:00 +00:00 committed by Stefan Reinauer
parent 69390dbba1
commit 069385fcb3
4 changed files with 4 additions and 4 deletions

View File

@ -27,7 +27,7 @@
#include <device/pci_ids.h>
#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,

View File

@ -25,7 +25,7 @@
#include <device/pci.h>
#include <device/pci_ids.h>
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,

View File

@ -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,
};

View File

@ -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,