ARM: Kirkwood: Convert NSA310 I2C to device tree
authorAndrew Lunn <andrew@lunn.ch>
Fri, 28 Dec 2012 14:08:50 +0000 (15:08 +0100)
committerArnd Bergmann <arnd@arndb.de>
Thu, 28 Feb 2013 17:57:12 +0000 (18:57 +0100)
Add a sub-node into the I2C node to represent the adt7476 device.

Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
arch/arm/boot/dts/kirkwood-nsa310.dts
arch/arm/mach-kirkwood/board-nsa310.c

index 85cce36..dbb3551 100644 (file)
 
                i2c@11000 {
                        status = "okay";
+
+                       adt7476: adt7476a@2e {
+                               compatible = "adt7476";
+                               reg = <0x2e>;
+                       };
                };
 
                nand@3000000 {
index cf2c78c..6966c86 100644 (file)
@@ -36,15 +36,9 @@ static unsigned int nsa310_mpp_config[] __initdata = {
        0
 };
 
-static struct i2c_board_info __initdata nsa310_i2c_info[] = {
-       { I2C_BOARD_INFO("adt7476", 0x2e) },
-};
-
 void __init nsa310_init(void)
 {
        kirkwood_mpp_conf(nsa310_mpp_config);
-
-       i2c_register_board_info(0, ARRAY_AND_SIZE(nsa310_i2c_info));
 }
 
 static int __init nsa310_pci_init(void)