From: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Date: Tue, 1 Apr 2014 16:38:44 +0300 > @@ -219,13 +219,6 @@ int sxgbe_mdio_register(struct net_device *ndev) > } > } > > - if (!err) { > - netdev_err(ndev, "PHY not found\n"); > - mdiobus_unregister(mdio_bus); > - mdiobus_free(mdio_bus); > - goto mdiobus_err; > - } > - ... > @@ -93,9 +93,9 @@ static void sxgbe_core_set_umac_addr(void __iomem *ioaddr, unsigned char *addr, > { > u32 high_word, low_word; > > - high_word = (addr[5] << 8) || (addr[4]); > - low_word = ((addr[3] << 24) || (addr[2] << 16) || > - (addr[1] << 8) || (addr[0])); > + high_word = (addr[5] << 8) | (addr[4]); > + low_word = (addr[3] << 24) | (addr[2] << 16) | > + (addr[1] << 8) | (addr[0]); > writel(high_word, ioaddr + SXGBE_CORE_ADD_HIGHOFFSET(reg_n)); > writel(low_word, ioaddr + SXGBE_CORE_ADD_LOWOFFSET(reg_n)); > } Nothing says "DRIVER NOT TESTED" like these two bugs. The MDIO bus is always freed, and the MAC address is corrupted into a boolean value before being programmed into the hardware. Frankly, this kind of stuff is unacceptable. I cannot see how this driver can function successfully with these two errors, it looks simply impossible. I'm not going to hide my feelings, this was a truly terrible driver submission. The amount of reviewing resources consumed during all of these iterations was huge, and it still went in with bugs like this. It probably should have gone into staging. -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html