Commit 60a25d00 authored by Arnd Bergmann's avatar Arnd Bergmann Committed by David S. Miller

hamradio: baycom: fix old-style declaration

Modern C standards expect the '__inline__' keyword to come before the return
type in a declaration, and we get a warning for this with "make W=1":

drivers/net/hamradio/baycom_par.c:159:1: error: '__inline__' is not at beginning of declaration [-Werror=old-style-declaration]

For consistency with other drivers, I'm changing '__inline__' to 'inline'
at the same time.
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent be4da0e3
...@@ -156,7 +156,7 @@ struct baycom_state { ...@@ -156,7 +156,7 @@ struct baycom_state {
/* --------------------------------------------------------------------- */ /* --------------------------------------------------------------------- */
static void __inline__ baycom_int_freq(struct baycom_state *bc) static inline void baycom_int_freq(struct baycom_state *bc)
{ {
#ifdef BAYCOM_DEBUG #ifdef BAYCOM_DEBUG
unsigned long cur_jiffies = jiffies; unsigned long cur_jiffies = jiffies;
...@@ -192,7 +192,7 @@ static void __inline__ baycom_int_freq(struct baycom_state *bc) ...@@ -192,7 +192,7 @@ static void __inline__ baycom_int_freq(struct baycom_state *bc)
/* --------------------------------------------------------------------- */ /* --------------------------------------------------------------------- */
static __inline__ void par96_tx(struct net_device *dev, struct baycom_state *bc) static inline void par96_tx(struct net_device *dev, struct baycom_state *bc)
{ {
int i; int i;
unsigned int data = hdlcdrv_getbits(&bc->hdrv); unsigned int data = hdlcdrv_getbits(&bc->hdrv);
...@@ -216,7 +216,7 @@ static __inline__ void par96_tx(struct net_device *dev, struct baycom_state *bc) ...@@ -216,7 +216,7 @@ static __inline__ void par96_tx(struct net_device *dev, struct baycom_state *bc)
/* --------------------------------------------------------------------- */ /* --------------------------------------------------------------------- */
static __inline__ void par96_rx(struct net_device *dev, struct baycom_state *bc) static inline void par96_rx(struct net_device *dev, struct baycom_state *bc)
{ {
int i; int i;
unsigned int data, mask, mask2, descx; unsigned int data, mask, mask2, descx;
......
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