]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ALSA: opl4: Move inline before return type
authorJoe Perches <joe@perches.com>
Wed, 5 Jul 2017 20:02:27 +0000 (13:02 -0700)
committerTakashi Iwai <tiwai@suse.de>
Thu, 6 Jul 2017 07:24:17 +0000 (09:24 +0200)
Make the code like the rest of the kernel.

Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/drivers/opl4/opl4_lib.c

index bc345d564f8d0c188aa684fbde030c61a96279d7..db76a5bf2bd2e6e615269161ab07c7517ff41829 100644 (file)
@@ -29,7 +29,7 @@ MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
 MODULE_DESCRIPTION("OPL4 driver");
 MODULE_LICENSE("GPL");
 
-static void inline snd_opl4_wait(struct snd_opl4 *opl4)
+static inline void snd_opl4_wait(struct snd_opl4 *opl4)
 {
        int timeout = 10;
        while ((inb(opl4->fm_port) & OPL4_STATUS_BUSY) && --timeout > 0)