diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2007-10-24 11:10:21 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2007-10-24 11:10:21 +0000 |
commit | 124e4a45ca6d1b1765b70fdc14ce03c5df76b257 (patch) | |
tree | bb03e69f50462eea0988531846056dfc9031023b /src/cpu/amd | |
parent | f1cf1f7c3aba660e4a174e966c4ef366d908565c (diff) |
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/amd')
-rw-r--r-- | src/cpu/amd/model_fxx/model_fxx_init.c | 2 | ||||
-rw-r--r-- | src/cpu/amd/model_gx1/model_gx1_init.c | 2 | ||||
-rw-r--r-- | src/cpu/amd/model_gx2/model_gx2_init.c | 2 | ||||
-rw-r--r-- | src/cpu/amd/model_lx/model_lx_init.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/cpu/amd/model_fxx/model_fxx_init.c b/src/cpu/amd/model_fxx/model_fxx_init.c index ab1014748a..0b16e21be6 100644 --- a/src/cpu/amd/model_fxx/model_fxx_init.c +++ b/src/cpu/amd/model_fxx/model_fxx_init.c @@ -625,7 +625,7 @@ static struct cpu_device_id cpu_table[] = { { 0, 0 }, }; -static struct cpu_driver model_fxx __cpu_driver = { +static const struct cpu_driver model_fxx __cpu_driver = { .ops = &cpu_dev_ops, .id_table = cpu_table, }; diff --git a/src/cpu/amd/model_gx1/model_gx1_init.c b/src/cpu/amd/model_gx1/model_gx1_init.c index b5179565db..e3c9034bee 100644 --- a/src/cpu/amd/model_gx1/model_gx1_init.c +++ b/src/cpu/amd/model_gx1/model_gx1_init.c @@ -95,7 +95,7 @@ static struct cpu_device_id cpu_table[] = { { 0, 0 }, }; -static struct cpu_driver driver __cpu_driver = { +static const struct cpu_driver driver __cpu_driver = { .ops = &cpu_dev_ops, .id_table = cpu_table, }; diff --git a/src/cpu/amd/model_gx2/model_gx2_init.c b/src/cpu/amd/model_gx2/model_gx2_init.c index c6ad683ff8..580b04c7bd 100644 --- a/src/cpu/amd/model_gx2/model_gx2_init.c +++ b/src/cpu/amd/model_gx2/model_gx2_init.c @@ -41,7 +41,7 @@ static struct cpu_device_id cpu_table[] = { { 0, 0 }, }; -static struct cpu_driver driver __cpu_driver = { +static const struct cpu_driver driver __cpu_driver = { .ops = &cpu_dev_ops, .id_table = cpu_table, }; diff --git a/src/cpu/amd/model_lx/model_lx_init.c b/src/cpu/amd/model_lx/model_lx_init.c index 9e6a1cf558..d1d08d7c88 100644 --- a/src/cpu/amd/model_lx/model_lx_init.c +++ b/src/cpu/amd/model_lx/model_lx_init.c @@ -68,7 +68,7 @@ static struct cpu_device_id cpu_table[] = { {0, 0}, }; -static struct cpu_driver driver __cpu_driver = { +static const struct cpu_driver driver __cpu_driver = { .ops = &cpu_dev_ops, .id_table = cpu_table, }; |