Commit 42efe660 authored by David S. Miller's avatar David S. Miller

Merge branch 'renesas-cleanups'

Sergei Shtylyov says:

====================
Kill useless *switch* defaults in the Renesas Ethernet drivers

   Here's a set of 2 patches against DaveM's 'net-next.git' repo removing
often used *default* cases doing nothing.

[1/2] ravb: kill useless *switch* defaults
[2/2] sh_eth: kill useless *switch* defaults
====================
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents 20692304 82c13309
...@@ -92,8 +92,6 @@ static void ravb_set_rate(struct net_device *ndev) ...@@ -92,8 +92,6 @@ static void ravb_set_rate(struct net_device *ndev)
case 1000: /* 1000BASE */ case 1000: /* 1000BASE */
ravb_write(ndev, GECMR_SPEED_1000, GECMR); ravb_write(ndev, GECMR_SPEED_1000, GECMR);
break; break;
default:
break;
} }
} }
......
...@@ -500,8 +500,6 @@ static void sh_eth_set_rate_gether(struct net_device *ndev) ...@@ -500,8 +500,6 @@ static void sh_eth_set_rate_gether(struct net_device *ndev)
case 1000: /* 1000BASE */ case 1000: /* 1000BASE */
sh_eth_write(ndev, GECMR_1000, GECMR); sh_eth_write(ndev, GECMR_1000, GECMR);
break; break;
default:
break;
} }
} }
...@@ -592,8 +590,6 @@ static void sh_eth_set_rate_r8a777x(struct net_device *ndev) ...@@ -592,8 +590,6 @@ static void sh_eth_set_rate_r8a777x(struct net_device *ndev)
case 100:/* 100BASE */ case 100:/* 100BASE */
sh_eth_modify(ndev, ECMR, ECMR_ELB, ECMR_ELB); sh_eth_modify(ndev, ECMR, ECMR_ELB, ECMR_ELB);
break; break;
default:
break;
} }
} }
...@@ -658,8 +654,6 @@ static void sh_eth_set_rate_sh7724(struct net_device *ndev) ...@@ -658,8 +654,6 @@ static void sh_eth_set_rate_sh7724(struct net_device *ndev)
case 100:/* 100BASE */ case 100:/* 100BASE */
sh_eth_modify(ndev, ECMR, ECMR_RTM, ECMR_RTM); sh_eth_modify(ndev, ECMR, ECMR_RTM, ECMR_RTM);
break; break;
default:
break;
} }
} }
...@@ -698,8 +692,6 @@ static void sh_eth_set_rate_sh7757(struct net_device *ndev) ...@@ -698,8 +692,6 @@ static void sh_eth_set_rate_sh7757(struct net_device *ndev)
case 100:/* 100BASE */ case 100:/* 100BASE */
sh_eth_write(ndev, 1, RTRATE); sh_eth_write(ndev, 1, RTRATE);
break; break;
default:
break;
} }
} }
...@@ -767,8 +759,6 @@ static void sh_eth_set_rate_giga(struct net_device *ndev) ...@@ -767,8 +759,6 @@ static void sh_eth_set_rate_giga(struct net_device *ndev)
case 1000: /* 1000BASE */ case 1000: /* 1000BASE */
sh_eth_write(ndev, 0x00000020, GECMR); sh_eth_write(ndev, 0x00000020, GECMR);
break; break;
default:
break;
} }
} }
...@@ -2917,8 +2907,6 @@ static const u16 *sh_eth_get_register_offset(int register_type) ...@@ -2917,8 +2907,6 @@ static const u16 *sh_eth_get_register_offset(int register_type)
case SH_ETH_REG_FAST_SH3_SH2: case SH_ETH_REG_FAST_SH3_SH2:
reg_offset = sh_eth_offset_fast_sh3_sh2; reg_offset = sh_eth_offset_fast_sh3_sh2;
break; break;
default:
break;
} }
return reg_offset; return reg_offset;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment