So I upgraded my tree for our custom mpc8321 boards.
I2c and ethernet stopped working.

Ethernet: I am using the ucc_geth driver and now
it seems like it won't TX any pkgs.
ethtool -S eth0  shows that the RX countes are increasing but
the TX ones stays a zero. 

Secondly i2c, I have this in my platform driver:
static struct i2c_board_info __initdata tmcu_i2c_devices[] = {
        { I2C_BOARD_INFO("rtc-ds1307", 0x68),
          .type = "ds1337",
        },
};

int __init tmcu_i2c_board_devs(void)
{
        int ret;
        ret = i2c_register_board_info(0, tmcu_i2c_devices,
                                      ARRAY_SIZE(tmcu_i2c_devices));
        return ret;
}
arch_initcall(tmcu_i2c_board_devs);

This no longer works, but if I add
[EMAIL PROTECTED] {
                compatible = "dallas,ds1337";
                reg = <68>;
        };
to my device tree so the whole I2c node looks like this:
        [EMAIL PROTECTED] {
                #address-cells = <1>;
                #size-cells = <0>;
                cell-index = <0>;
                device_type = "i2c";
                compatible = "fsl-i2c";
                reg = <3000 100>;
                interrupts = <e 8>;
                interrupt-parent = <&ipic>;
                dfsrr;

                [EMAIL PROTECTED] {
                        compatible = "dallas,ds1337";
                        reg = <68>;
                };
        };
it works again. Is my static init of the rtc device faulty or is this
a bug in the kernel?

 Jocke
_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev

Reply via email to