From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vinod Koul Subject: Re: [patch v2] ASoC: Intel: Skylake: Fix a couple signedness bugs Date: Wed, 16 Dec 2015 21:29:10 +0530 Message-ID: <20151216155910.GP1854@localhost> References: <20151215092014.GG5177@mwanda> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20151215092014.GG5177@mwanda> Sender: kernel-janitors-owner@vger.kernel.org To: Dan Carpenter Cc: Liam Girdwood , Dharageswari R , Mark Brown , Jaroslav Kysela , Takashi Iwai , Jeeja KP , "Subhransu S. Prusty" , alsa-devel@alsa-project.org, kernel-janitors@vger.kernel.org List-Id: alsa-devel@alsa-project.org On Tue, Dec 15, 2015 at 12:20:14PM +0300, Dan Carpenter wrote: > These need to be signed because they hold negative error codes. > > Signed-off-by: Dan Carpenter Acked-by Vinod Koul > --- > Fix a typo in the change log. s/unsigned/signed/ > > diff --git a/sound/soc/intel/skylake/skl-sst.c b/sound/soc/intel/skylake/skl-sst.c > index 8cd5cdb..e26f474 100644 > --- a/sound/soc/intel/skylake/skl-sst.c > +++ b/sound/soc/intel/skylake/skl-sst.c > @@ -208,7 +208,7 @@ static unsigned int skl_get_errorcode(struct sst_dsp *ctx) > * since get/set_module are called from DAPM context, > * we don't need lock for usage count > */ > -static unsigned int skl_get_module(struct sst_dsp *ctx, u16 mod_id) > +static int skl_get_module(struct sst_dsp *ctx, u16 mod_id) > { > struct skl_module_table *module; > > @@ -220,7 +220,7 @@ static unsigned int skl_get_module(struct sst_dsp *ctx, u16 mod_id) > return -EINVAL; > } > > -static unsigned int skl_put_module(struct sst_dsp *ctx, u16 mod_id) > +static int skl_put_module(struct sst_dsp *ctx, u16 mod_id) > { > struct skl_module_table *module; > > @@ -340,7 +340,7 @@ static int skl_load_module(struct sst_dsp *ctx, u16 mod_id, char *guid) > > static int skl_unload_module(struct sst_dsp *ctx, u16 mod_id) > { > - unsigned int usage_cnt; > + int usage_cnt; > struct skl_sst *skl = ctx->thread_context; > int ret = 0; > -- ~Vinod