* bjdooks' git - current state of i2c-next
@ 2010-02-03 2:39 Ben Dooks
[not found] ` <20100203023902.GA2794-elnMNo+KYs3pIgCt6eIbzw@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Ben Dooks @ 2010-02-03 2:39 UTC (permalink / raw)
To: linux-i2c-u79uwXL29TY76Z2rM5mHXA
Current state of next-i2c branch, which should be the start
of the next merge window pull as long as there are no objections
The following changes since commit 1a45dcfe2525e9432cb4aba461d4994fc2befe42:
Linus Torvalds (1):
Merge branch 'for-linus' of git://git.kernel.dk/linux-2.6-block
are available in the git repository at:
git://git.fluff.org/bjdooks/linux.git next-i2c
Jean-Hugues Deschenes (3):
i2c-designware: Use local version of readl & writel
i2c-designware: Check component type register
i2c-designware: Allow mixed endianness accesses
Richard Röjfors (1):
i2c: Add support for Xilinx XPS IIC Bus Interface
Uwe Kleine-König (1):
i2c/imx: don't add probe function to the driver struct
Wolfgang Grandegger (3):
i2c-mpc: use __devinit[data] for initialization functions and data
i2c-mpc: add support for the MPC512x processors from Freescale
powerpc: doc/dts-bindings: update doc of FSL I2C bindings
srinidhi kasagar (1):
i2c: Add support for Ux500/Nomadik I2C controller
Documentation/powerpc/dts-bindings/fsl/i2c.txt | 30 +-
drivers/i2c/busses/Kconfig | 24 +-
drivers/i2c/busses/Makefile | 2 +
drivers/i2c/busses/i2c-designware.c | 116 ++-
drivers/i2c/busses/i2c-imx.c | 1 -
drivers/i2c/busses/i2c-mpc.c | 198 +++--
drivers/i2c/busses/i2c-nomadik.c | 959 ++++++++++++++++++++++++
drivers/i2c/busses/i2c-xiic.c | 823 ++++++++++++++++++++
include/linux/i2c-xiic.h | 43 ++
9 files changed, 2068 insertions(+), 128 deletions(-)
create mode 100644 drivers/i2c/busses/i2c-nomadik.c
create mode 100644 drivers/i2c/busses/i2c-xiic.c
create mode 100644 include/linux/i2c-xiic.h
--
Ben (ben-elnMNo+KYs3YtjvyW6yDsg@public.gmane.org, http://www.fluff.org/)
'a smiley only costs 4 bytes'
^ permalink raw reply [flat|nested] 3+ messages in thread[parent not found: <20100203023902.GA2794-elnMNo+KYs3pIgCt6eIbzw@public.gmane.org>]
* Re: bjdooks' git - current state of i2c-next [not found] ` <20100203023902.GA2794-elnMNo+KYs3pIgCt6eIbzw@public.gmane.org> @ 2010-02-03 10:14 ` Wolfram Sang 2010-02-04 0:14 ` Tony Lindgren 1 sibling, 0 replies; 3+ messages in thread From: Wolfram Sang @ 2010-02-03 10:14 UTC (permalink / raw) To: Ben Dooks; +Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA [-- Attachment #1: Type: text/plain, Size: 457 bytes --] Hi Ben, On Wed, Feb 03, 2010 at 02:39:02AM +0000, Ben Dooks wrote: > Current state of next-i2c branch, which should be the start > of the next merge window pull as long as there are no objections What about http://article.gmane.org/gmane.linux.drivers.i2c/5260 ? Regards, Wolfram -- Pengutronix e.K. | Wolfram Sang | Industrial Linux Solutions | http://www.pengutronix.de/ | [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 197 bytes --] ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: bjdooks' git - current state of i2c-next [not found] ` <20100203023902.GA2794-elnMNo+KYs3pIgCt6eIbzw@public.gmane.org> 2010-02-03 10:14 ` Wolfram Sang @ 2010-02-04 0:14 ` Tony Lindgren 1 sibling, 0 replies; 3+ messages in thread From: Tony Lindgren @ 2010-02-04 0:14 UTC (permalink / raw) To: Ben Dooks; +Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA * Ben Dooks <ben-linux-elnMNo+KYs3YtjvyW6yDsg@public.gmane.org> [100202 18:31]: > Current state of next-i2c branch, which should be the start > of the next merge window pull as long as there are no objections Can you also please merge the 16-bit register support for i2c-omap? The subject is "[v2,I2C-OMAP] Add support for 16-bit registers" It's been tested in linux-omap tree for several weeks. Available in mbox format at: http://patchwork.kernel.org/patch/72295/ Regards, Tony > The following changes since commit 1a45dcfe2525e9432cb4aba461d4994fc2befe42: > Linus Torvalds (1): > Merge branch 'for-linus' of git://git.kernel.dk/linux-2.6-block > > are available in the git repository at: > > git://git.fluff.org/bjdooks/linux.git next-i2c > > Jean-Hugues Deschenes (3): > i2c-designware: Use local version of readl & writel > i2c-designware: Check component type register > i2c-designware: Allow mixed endianness accesses > > Richard Röjfors (1): > i2c: Add support for Xilinx XPS IIC Bus Interface > > Uwe Kleine-König (1): > i2c/imx: don't add probe function to the driver struct > > Wolfgang Grandegger (3): > i2c-mpc: use __devinit[data] for initialization functions and data > i2c-mpc: add support for the MPC512x processors from Freescale > powerpc: doc/dts-bindings: update doc of FSL I2C bindings > > srinidhi kasagar (1): > i2c: Add support for Ux500/Nomadik I2C controller > > Documentation/powerpc/dts-bindings/fsl/i2c.txt | 30 +- > drivers/i2c/busses/Kconfig | 24 +- > drivers/i2c/busses/Makefile | 2 + > drivers/i2c/busses/i2c-designware.c | 116 ++- > drivers/i2c/busses/i2c-imx.c | 1 - > drivers/i2c/busses/i2c-mpc.c | 198 +++-- > drivers/i2c/busses/i2c-nomadik.c | 959 ++++++++++++++++++++++++ > drivers/i2c/busses/i2c-xiic.c | 823 ++++++++++++++++++++ > include/linux/i2c-xiic.h | 43 ++ > 9 files changed, 2068 insertions(+), 128 deletions(-) > create mode 100644 drivers/i2c/busses/i2c-nomadik.c > create mode 100644 drivers/i2c/busses/i2c-xiic.c > create mode 100644 include/linux/i2c-xiic.h > > -- > Ben (ben-elnMNo+KYs3YtjvyW6yDsg@public.gmane.org, http://www.fluff.org/) > > 'a smiley only costs 4 bytes' > -- > To unsubscribe from this list: send the line "unsubscribe linux-i2c" in > the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org > More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-02-04 0:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-03 2:39 bjdooks' git - current state of i2c-next Ben Dooks
[not found] ` <20100203023902.GA2794-elnMNo+KYs3pIgCt6eIbzw@public.gmane.org>
2010-02-03 10:14 ` Wolfram Sang
2010-02-04 0:14 ` Tony Lindgren
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.