i2c-pxa.c (c3ad33c9bcb6616999953af76f16318120fe3691) i2c-pxa.c (2178218027e4da0608219fae1d02e5c88f4e560d)
1/*
2 * i2c_adap_pxa.c
3 *
4 * I2C adapter for the PXA I2C bus access.
5 *
6 * Copyright (C) 2002 Intrinsyc Software Inc.
7 * Copyright (C) 2004-2005 Deep Blue Solutions Ltd.
8 *

--- 20 unchanged lines hidden (view full) ---

29#include <linux/delay.h>
30#include <linux/errno.h>
31#include <linux/interrupt.h>
32#include <linux/i2c-pxa.h>
33#include <linux/platform_device.h>
34#include <linux/err.h>
35#include <linux/clk.h>
36#include <linux/slab.h>
1/*
2 * i2c_adap_pxa.c
3 *
4 * I2C adapter for the PXA I2C bus access.
5 *
6 * Copyright (C) 2002 Intrinsyc Software Inc.
7 * Copyright (C) 2004-2005 Deep Blue Solutions Ltd.
8 *

--- 20 unchanged lines hidden (view full) ---

29#include <linux/delay.h>
30#include <linux/errno.h>
31#include <linux/interrupt.h>
32#include <linux/i2c-pxa.h>
33#include <linux/platform_device.h>
34#include <linux/err.h>
35#include <linux/clk.h>
36#include <linux/slab.h>
37#include <linux/io.h>
37
38#include <asm/irq.h>
38
39#include <asm/irq.h>
39#include <asm/io.h>
40#include <plat/i2c.h>
41
42/*
43 * I2C register offsets will be shifted 0 or 1 bit left, depending on
44 * different SoCs
45 */
46#define REG_SHIFT_0 (0 << 0)
47#define REG_SHIFT_1 (1 << 0)

--- 1149 unchanged lines hidden ---
40#include <plat/i2c.h>
41
42/*
43 * I2C register offsets will be shifted 0 or 1 bit left, depending on
44 * different SoCs
45 */
46#define REG_SHIFT_0 (0 << 0)
47#define REG_SHIFT_1 (1 << 0)

--- 1149 unchanged lines hidden ---