ARM: Kirkwood: Describe DNS325 temperature sensor in DT.
authorAndrew Lunn <andrew@lunn.ch>
Mon, 16 Jul 2012 10:19:34 +0000 (12:19 +0200)
committerAndrew Lunn <andrew@lunn.ch>
Fri, 27 Jul 2012 14:49:36 +0000 (16:49 +0200)
Now that we have I2C support in DT, describe the LM75 in
the DT file for the DNS325.

Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Jamie Lentin <jm@lentin.co.uk>
arch/arm/boot/dts/kirkwood-dns325.dts
arch/arm/mach-kirkwood/board-dnskw.c

index 17895d92d4ba40c2ac99e301591d5a384d7206a3..debb3703dfe7bbca4a6b99369280520fc3c3f146 100644 (file)
        };
 
        ocp@f1000000 {
+               i2c@11000 {
+                       status = "okay";
+
+                       lm75: lm75@48 {
+                               compatible = "national,lm75";
+                               reg = <0x48>;
+                       };
+               };
                serial@12000 {
                        clock-frequency = <200000000>;
                        status = "okay";
index 179f4b363d778a3e323add95bc4ab972e0753445..1c97efa7705eca650697649aaca0592b6d012dd7 100644 (file)
@@ -14,7 +14,6 @@
 #include <linux/kernel.h>
 #include <linux/init.h>
 #include <linux/platform_device.h>
-#include <linux/i2c.h>
 #include <linux/ata_platform.h>
 #include <linux/mv643xx_eth.h>
 #include <linux/of.h>
@@ -153,13 +152,6 @@ static struct platform_device dns320_led_device = {
        },
 };
 
-static struct i2c_board_info dns325_i2c_board_info[] __initdata = {
-       {
-               I2C_BOARD_INFO("lm75", 0x48),
-       },
-       /* Something at 0x0c also */
-};
-
 static struct gpio_keys_button dnskw_button_pins[] = {
        {
                .code           = KEY_POWER,
@@ -241,17 +233,14 @@ void __init dnskw_init(void)
 
        kirkwood_ehci_init();
        kirkwood_ge00_init(&dnskw_ge00_data);
-       kirkwood_i2c_init();
 
        platform_device_register(&dnskw_button_device);
        platform_device_register(&dnskw_fan_device);
 
-       if (of_machine_is_compatible("dlink,dns-325")) {
-               i2c_register_board_info(0, dns325_i2c_board_info,
-                                       ARRAY_SIZE(dns325_i2c_board_info));
+       if (of_machine_is_compatible("dlink,dns-325"))
                platform_device_register(&dns325_led_device);
 
-       else if (of_machine_is_compatible("dlink,dns-320"))
+       else if (of_machine_is_compatible("dlink,dns-320"))
                platform_device_register(&dns320_led_device);
 
        /* Register power-off GPIO. */
This page took 0.027476 seconds and 5 git commands to generate.