diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-14 20:57:54 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-14 20:57:54 +0200 |
commit | d0a0c28cf178943afaf22f87957b73c47497cb4b (patch) | |
tree | c07ee70a42bdf046d0ce8540b4e86d2c16f05b6c /arch | |
parent | Documentation: DMA-API-HOWTO.txt: rename ARCH_KMALLOC_MINALIGN to ARCH_DMA_MI... (diff) | |
parent | Merge branch 'for-2636/i2c/nuc' into next-i2c (diff) | |
download | linux-d0a0c28cf178943afaf22f87957b73c47497cb4b.tar.xz linux-d0a0c28cf178943afaf22f87957b73c47497cb4b.zip |
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')
-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 @@ +#ifndef __ASM_ARCH_NUC900_I2C_H +#define __ASM_ARCH_NUC900_I2C_H + +struct nuc900_platform_i2c { + int bus_num; + unsigned long bus_freq; +}; + +#endif /* __ASM_ARCH_NUC900_I2C_H */ |