diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-11-21 15:25:27 +0300 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-02-12 20:32:41 +0300 |
commit | 9d7f73632c87ef1b6187eb539d1efd63c3cf0e36 (patch) | |
tree | d4eda1040089f76fa092dc96432d708064a84ad5 /include/linux/i2c-pnx.h | |
parent | 44c5d739181886cff8e3903dfa38cd704f3d9640 (diff) | |
download | linux-9d7f73632c87ef1b6187eb539d1efd63c3cf0e36.tar.xz |
ARM: PNX4008: move i2c_adapter structure inside the drivers private data
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include/linux/i2c-pnx.h')
-rw-r--r-- | include/linux/i2c-pnx.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/i2c-pnx.h b/include/linux/i2c-pnx.h index 9ebdf882d032..a87124d4d533 100644 --- a/include/linux/i2c-pnx.h +++ b/include/linux/i2c-pnx.h @@ -29,10 +29,12 @@ struct i2c_pnx_algo_data { struct i2c_pnx_mif mif; int last; struct clk *clk; + struct i2c_pnx_data *i2c_pnx; + struct i2c_adapter adapter; }; struct i2c_pnx_data { - struct i2c_adapter *adapter; + const char *name; u32 base; int irq; }; |