trivial: remove unnecessary semicolons
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
@ -2556,13 +2556,13 @@ static int __devinit emac_init_config(struct emac_instance *dev)
|
||||
if (emac_read_uint_prop(np, "mdio-device", &dev->mdio_ph, 0))
|
||||
dev->mdio_ph = 0;
|
||||
if (emac_read_uint_prop(np, "zmii-device", &dev->zmii_ph, 0))
|
||||
dev->zmii_ph = 0;;
|
||||
dev->zmii_ph = 0;
|
||||
if (emac_read_uint_prop(np, "zmii-channel", &dev->zmii_port, 0))
|
||||
dev->zmii_port = 0xffffffff;;
|
||||
dev->zmii_port = 0xffffffff;
|
||||
if (emac_read_uint_prop(np, "rgmii-device", &dev->rgmii_ph, 0))
|
||||
dev->rgmii_ph = 0;;
|
||||
dev->rgmii_ph = 0;
|
||||
if (emac_read_uint_prop(np, "rgmii-channel", &dev->rgmii_port, 0))
|
||||
dev->rgmii_port = 0xffffffff;;
|
||||
dev->rgmii_port = 0xffffffff;
|
||||
if (emac_read_uint_prop(np, "fifo-entry-size", &dev->fifo_entry_size, 0))
|
||||
dev->fifo_entry_size = 16;
|
||||
if (emac_read_uint_prop(np, "mal-burst-size", &dev->mal_burst_size, 0))
|
||||
|
Reference in New Issue
Block a user