summaryrefslogtreecommitdiff
path: root/src/include/device
diff options
context:
space:
mode:
authorMyles Watson <mylesgw@gmail.com>2009-09-29 14:56:15 +0000
committerMyles Watson <mylesgw@gmail.com>2009-09-29 14:56:15 +0000
commit6e2357676fb9ccf202ac3dbc66c83a040f061a4e (patch)
tree3cb788b3a5c6866737ea33894ce35ebb4dd80deb /src/include/device
parent5e54871375a3416c576d1d1fbdfddda2dbcc7411 (diff)
downloadcoreboot-6e2357676fb9ccf202ac3dbc66c83a040f061a4e.tar.xz
Remove some warnings.
Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4686 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/include/device')
-rw-r--r--src/include/device/device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/device/device.h b/src/include/device/device.h
index 1990454d6a..06a9245145 100644
--- a/src/include/device/device.h
+++ b/src/include/device/device.h
@@ -15,7 +15,7 @@ struct smbus_bus_operations;
/* Chip operations */
struct chip_operations {
void (*enable_dev)(struct device *dev);
- char *name;
+ const char *name;
};
#define CHIP_NAME(X) .name = X,