}
 
 /* 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.
         * To avoid floating point operations we'll multiply by 10
 
 
 #define SJA1105_RATE_MBPS(speed) (((speed) * 64000) / 1000)
 
-static inline void
-sja1105_setup_policer(struct sja1105_l2_policing_entry *policing,
-                     int index)
+static void sja1105_setup_policer(struct sja1105_l2_policing_entry *policing,
+                                 int index)
 {
        policing[index].sharindx = index;
        policing[index].smax = 65535; /* Burst size in bytes */
  * 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.
  */
-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;
 }