ucc_geth: Don't use RX clock as TX clock.

Commit 9fb1e350e16164d56990dde036ae9c0a2fd3f634,
ucc_geth: use rx-clock-name and tx-clock-name device tree properties
Introduced a typo that made the driver use the RX clock
as TX clock, causing massive TX errors.

Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>

authored by Joakim Tjernlund and committed by Jeff Garzik e410553f 1b3aa7af

+1 -1
+1 -1
drivers/net/ucc_geth.c
··· 3922 return -EINVAL; 3923 } 3924 } else { 3925 - prop = of_get_property(np, "rx-clock", NULL); 3926 if (!prop) { 3927 printk(KERN_ERR 3928 "ucc_geth: mising tx-clock-name property\n");
··· 3922 return -EINVAL; 3923 } 3924 } else { 3925 + prop = of_get_property(np, "tx-clock", NULL); 3926 if (!prop) { 3927 printk(KERN_ERR 3928 "ucc_geth: mising tx-clock-name property\n");