Commit 09c1b412 authored by Vladimir Oltean's avatar Vladimir Oltean Committed by David S. Miller

net: dsa: sja1105: Don't use "inline" function declarations in C files

Let the compiler decide.
Signed-off-by: default avatarVladimir Oltean <olteanv@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5cf37738
...@@ -405,7 +405,7 @@ sja1105_cfg_pad_mii_id_packing(void *buf, struct sja1105_cfg_pad_mii_id *cmd, ...@@ -405,7 +405,7 @@ sja1105_cfg_pad_mii_id_packing(void *buf, struct sja1105_cfg_pad_mii_id *cmd,
} }
/* Valid range in degrees is an integer between 73.8 and 101.7 */ /* Valid range in degrees is an integer between 73.8 and 101.7 */
static inline u64 sja1105_rgmii_delay(u64 phase) static u64 sja1105_rgmii_delay(u64 phase)
{ {
/* UM11040.pdf: The delay in degree phase is 73.8 + delay_tune * 0.9. /* UM11040.pdf: The delay in degree phase is 73.8 + delay_tune * 0.9.
* To avoid floating point operations we'll multiply by 10 * To avoid floating point operations we'll multiply by 10
......
...@@ -458,8 +458,7 @@ static int sja1105_init_general_params(struct sja1105_private *priv) ...@@ -458,8 +458,7 @@ static int sja1105_init_general_params(struct sja1105_private *priv)
#define SJA1105_RATE_MBPS(speed) (((speed) * 64000) / 1000) #define SJA1105_RATE_MBPS(speed) (((speed) * 64000) / 1000)
static inline void static void sja1105_setup_policer(struct sja1105_l2_policing_entry *policing,
sja1105_setup_policer(struct sja1105_l2_policing_entry *policing,
int index) int index)
{ {
policing[index].sharindx = index; policing[index].sharindx = index;
...@@ -951,7 +950,7 @@ sja1105_static_fdb_change(struct sja1105_private *priv, int port, ...@@ -951,7 +950,7 @@ sja1105_static_fdb_change(struct sja1105_private *priv, int port,
* For the placement of a newly learnt FDB entry, the switch selects the bin * For the placement of a newly learnt FDB entry, the switch selects the bin
* based on a hash function, and the way within that bin incrementally. * based on a hash function, and the way within that bin incrementally.
*/ */
static inline int sja1105et_fdb_index(int bin, int way) static int sja1105et_fdb_index(int bin, int way)
{ {
return bin * SJA1105ET_FDB_BIN_SIZE + way; return bin * SJA1105ET_FDB_BIN_SIZE + way;
} }
......
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