From: Matt Carlson Date: Mon, 13 Feb 2012 10:20:11 +0000 (+0000) Subject: tg3: Eliminate unneeded prototype X-Git-Tag: v3.4-rc1~177^2~310 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4b40952268c2390a71b9728194eb4b4dd514c087;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git tg3: Eliminate unneeded prototype This patch eliminates the unneeded tg3_halt_cpu() prototype and moves the tg3_setup_phy() prototype closer to where it is needed. Signed-off-by: Matt Carlson Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/broadcom/tg3.c b/drivers/net/ethernet/broadcom/tg3.c index cc09217..b89c932 100644 --- a/drivers/net/ethernet/broadcom/tg3.c +++ b/drivers/net/ethernet/broadcom/tg3.c @@ -2709,9 +2709,6 @@ static int tg3_5700_link_polarity(struct tg3 *tp, u32 speed) return 0; } -static int tg3_setup_phy(struct tg3 *, int); -static int tg3_halt_cpu(struct tg3 *, u32); - static void tg3_power_down_phy(struct tg3 *tp, bool do_low_power) { u32 val; @@ -3514,6 +3511,8 @@ static int tg3_power_up(struct tg3 *tp) return err; } +static int tg3_setup_phy(struct tg3 *, int); + static int tg3_power_down_prepare(struct tg3 *tp) { u32 misc_host_ctrl;