Messages in this thread Patch in this message |  | | Subject | [PATCH] [TRIVIAL] unicore32: Fix typo 'PUV3_I2C' | | From | Paul Bolle <> | | Date | Sun, 13 Nov 2011 01:43:23 +0100 |
| |
Signed-off-by: Paul Bolle <pebolle@tiscali.nl> --- 0) This corrects an obvious typo. It is untested.
1) This could influence the code generated for "I2C Battery BQ27200 Support" and for "I2C EEPROMs AT24 support". So I've CC'd the people involved in commit fa7499ef77 ("unicore32 machine related files: core files"), which introduced this typo, to actually test this.
arch/unicore32/Kconfig | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/unicore32/Kconfig b/arch/unicore32/Kconfig index e57dcce..942ed61 100644 --- a/arch/unicore32/Kconfig +++ b/arch/unicore32/Kconfig @@ -237,13 +237,13 @@ menu "PKUnity NetBook-0916 Features" config I2C_BATTERY_BQ27200 tristate "I2C Battery BQ27200 Support" - select PUV3_I2C + select I2C_PUV3 select POWER_SUPPLY select BATTERY_BQ27x00 config I2C_EEPROM_AT24 tristate "I2C EEPROMs AT24 support" - select PUV3_I2C + select I2C_PUV3 select MISC_DEVICES select EEPROM_AT24 -- 1.7.4.4
|  |