summaryrefslogtreecommitdiffstats
path: root/src/cpu/intel/model_f4x
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2007-10-24 11:10:21 +0000
committerStefan Reinauer <stepan@openbios.org>2007-10-24 11:10:21 +0000
commit124e4a45ca6d1b1765b70fdc14ce03c5df76b257 (patch)
treebb03e69f50462eea0988531846056dfc9031023b /src/cpu/intel/model_f4x
parentf1cf1f7c3aba660e4a174e966c4ef366d908565c (diff)
downloadcoreboot-124e4a45ca6d1b1765b70fdc14ce03c5df76b257.tar.gz
coreboot-124e4a45ca6d1b1765b70fdc14ce03c5df76b257.tar.bz2
coreboot-124e4a45ca6d1b1765b70fdc14ce03c5df76b257.zip
analog changes for the cpu_driver structures...
make them const before putting them into the read-only segment... (trivial) Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2892 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/intel/model_f4x')
-rw-r--r--src/cpu/intel/model_f4x/model_f4x_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/intel/model_f4x/model_f4x_init.c b/src/cpu/intel/model_f4x/model_f4x_init.c
index 649638670d84..a48c7592ba3d 100644
--- a/src/cpu/intel/model_f4x/model_f4x_init.c
+++ b/src/cpu/intel/model_f4x/model_f4x_init.c
@@ -52,7 +52,7 @@ static struct cpu_device_id cpu_table[] = {
{ 0, 0 },
};
-static struct cpu_driver model_f4x __cpu_driver = {
+static const struct cpu_driver model_f4x __cpu_driver = {
.ops = &cpu_dev_ops,
.id_table = cpu_table,
};