diff options
author | Joe Perches <joe@perches.com> | 2017-07-05 16:02:27 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-07-06 03:24:17 -0400 |
commit | 6ede2b7df92f4f8da1abfa831a038688fcf409ea (patch) | |
tree | 368d20797e6aa9879d372166389fbab98f94168a | |
parent | fc18282cdcba984ab89c74d7e844c10114ae0795 (diff) |
ALSA: opl4: Move inline before return type
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>
-rw-r--r-- | sound/drivers/opl4/opl4_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/drivers/opl4/opl4_lib.c b/sound/drivers/opl4/opl4_lib.c index bc345d564f8d..db76a5bf2bd2 100644 --- a/sound/drivers/opl4/opl4_lib.c +++ b/sound/drivers/opl4/opl4_lib.c | |||
@@ -29,7 +29,7 @@ MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>"); | |||
29 | MODULE_DESCRIPTION("OPL4 driver"); | 29 | MODULE_DESCRIPTION("OPL4 driver"); |
30 | MODULE_LICENSE("GPL"); | 30 | MODULE_LICENSE("GPL"); |
31 | 31 | ||
32 | static void inline snd_opl4_wait(struct snd_opl4 *opl4) | 32 | static inline void snd_opl4_wait(struct snd_opl4 *opl4) |
33 | { | 33 | { |
34 | int timeout = 10; | 34 | int timeout = 10; |
35 | while ((inb(opl4->fm_port) & OPL4_STATUS_BUSY) && --timeout > 0) | 35 | while ((inb(opl4->fm_port) & OPL4_STATUS_BUSY) && --timeout > 0) |