diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-14 14:57:54 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-14 14:57:54 -0400 |
commit | d0a0c28cf178943afaf22f87957b73c47497cb4b (patch) | |
tree | c07ee70a42bdf046d0ce8540b4e86d2c16f05b6c /arch/arm | |
parent | ce00f7feb0a497b4280e1efe16e03728ed292687 (diff) | |
parent | f6e1901c4c596238abe6735bb20593f2734f757e (diff) |
Merge branch 'for-linus/i2c-2636' of git://git.fluff.org/bjdooks/linux
* 'for-linus/i2c-2636' of git://git.fluff.org/bjdooks/linux:
i2c/nuc900: add i2c driver support for nuc900
i2c: Enable NXP LPC support in Kconfig
i2c-pxa: fix compiler warning, due to missing const
i2c: davinci: bus recovery procedure to clear the bus
i2c: davinci: Add cpufreq support
i2c: davinci: Add suspend/resume support
i2c: davinci: Add helper functions for power management
i2c: davinci: misc. cleanups: remove MOD_REG_BIT and IO_ADDRESS usage
i2c: davinci: Fix smbus Oops with AIC33 usage
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-w90x900/include/mach/i2c.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-w90x900/include/mach/i2c.h b/arch/arm/mach-w90x900/include/mach/i2c.h new file mode 100644 index 000000000000..9ffb12d06e91 --- /dev/null +++ b/arch/arm/mach-w90x900/include/mach/i2c.h | |||
@@ -0,0 +1,9 @@ | |||
1 | #ifndef __ASM_ARCH_NUC900_I2C_H | ||
2 | #define __ASM_ARCH_NUC900_I2C_H | ||
3 | |||
4 | struct nuc900_platform_i2c { | ||
5 | int bus_num; | ||
6 | unsigned long bus_freq; | ||
7 | }; | ||
8 | |||
9 | #endif /* __ASM_ARCH_NUC900_I2C_H */ | ||