diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2006-11-01 12:52:49 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2006-11-01 12:52:49 +0000 |
commit | f28674ec3c3349640733effc6026e7148b447550 (patch) | |
tree | 0c7acc7942a06c72308375702efd7b6ce7190707 /src/superio/ite/it8671f | |
parent | 700b38a0d545230d0802f8121b9da05549092533 (diff) |
Rename some variables from *ITE* to *ite* for consistency reasons (refs #4).
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2482 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/superio/ite/it8671f')
-rw-r--r-- | src/superio/ite/it8671f/chip.h | 4 | ||||
-rw-r--r-- | src/superio/ite/it8671f/superio.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/superio/ite/it8671f/chip.h b/src/superio/ite/it8671f/chip.h index 3027e96f1d..689d256929 100644 --- a/src/superio/ite/it8671f/chip.h +++ b/src/superio/ite/it8671f/chip.h @@ -22,9 +22,9 @@ #include <pc80/keyboard.h> #include <uart8250.h> -extern struct chip_operations superio_ITE_it8671f_ops; +extern struct chip_operations superio_ite_it8671f_ops; -struct superio_ITE_it8671f_config { +struct superio_ite_it8671f_config { struct uart8250 com1, com2; struct pc_keyboard keyboard; }; diff --git a/src/superio/ite/it8671f/superio.c b/src/superio/ite/it8671f/superio.c index cc9f65e32e..007677db4c 100644 --- a/src/superio/ite/it8671f/superio.c +++ b/src/superio/ite/it8671f/superio.c @@ -23,7 +23,7 @@ static void init(device_t dev) { - struct superio_ITE_it8671f_config *conf; + struct superio_ite_it8671f_config *conf; struct resource *res0, *res1; if (!dev->enabled) { @@ -76,7 +76,7 @@ static void enable_dev(struct device *dev) sizeof(pnp_dev_info)/sizeof(pnp_dev_info[0]), pnp_dev_info); } -struct chip_operations superio_ITE_it8671f_ops = { +struct chip_operations superio_ite_it8671f_ops = { CHIP_NAME("ITE it8671f") .enable_dev = enable_dev, }; |