Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753267AbdGEUjI (ORCPT ); Wed, 5 Jul 2017 16:39:08 -0400 Received: from webclient5.webclient5.de ([136.243.32.179]:32893 "EHLO webclient5.webclient5.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751886AbdGEUjH (ORCPT ); Wed, 5 Jul 2017 16:39:07 -0400 X-Greylist: delayed 392 seconds by postgrey-1.27 at vger.kernel.org; Wed, 05 Jul 2017 16:39:06 EDT Subject: Re: [PATCH 18/18] ALSA: opl4: Move inline before return type To: Joe Perches , Andrew Morton Cc: Jaroslav Kysela , Takashi Iwai , alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org References: From: Clemens Ladisch Message-ID: Date: Wed, 5 Jul 2017 22:30:05 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 809 Lines: 24 Joe Perches wrote: > Make the code like the rest of the kernel. > > Signed-off-by: Joe Perches Acked-by: Clemens Ladisch > --- > sound/drivers/opl4/opl4_lib.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > 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 "); > 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)