lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Tue, 12 Dec 2017 10:54:23 -0600
From:   Steven Eckhoff <steven.eckhoff.opensource@...il.com>
To:     Takashi Iwai <tiwai@...e.de>
Cc:     Charles Keepax <ckeepax@...nsource.cirrus.com>,
        alsa-devel@...a-project.org, Liam Girdwood <lgirdwood@...il.com>,
        MarkBrown <broonie@...nel.org>, Jaroslav Kysela <perex@...ex.cz>,
        linux-kernel@...r.kernel.org
Subject: Re: [PATCH v5] ASoC: TSCS42xx: Add support for Tempo Semiconductor's
 TSCS42xx audio CODEC

On Tue, Dec 12, 2017 at 02:10:09PM +0100, Takashi Iwai wrote:
> On Tue, 12 Dec 2017 14:04:01 +0100,
> Charles Keepax wrote:
> > 
> > On Mon, Dec 11, 2017 at 01:54:25PM -0600, Steven Eckhoff wrote:
> > > Currently there is no support for the TSCS42xx audio CODEC.
> > > 
> > > Add support for it.
> > > 
> > > v5 attempts to address all issues raised in the previous reviews.
> > > 
> > > Thank you to everyone who has invested their time reviewing these
> > > patches.
> > > 
> > > Acked-by: Philippe Ombredanne <pombredanne@...b.com>
> > > Signed-off-by: Steven Eckhoff <steven.eckhoff.opensource@...il.com>
> > > ---
> > > +int bytes_tlv_callback(struct snd_kcontrol *kcontrol, int op_flag,
> > > +	unsigned int size, unsigned int __user *tlv)
> > > +{
> > > +	struct tscs_dsp_ctl *ctl =
> > > +		(struct tscs_dsp_ctl *)kcontrol->private_value;
> > > +	struct soc_bytes_ext *params = &ctl->bytes_ext;
> > > +	unsigned int count = size < params->max ? size : params->max;
> > > +	int ret = -ENXIO;
> > > +
> > > +	switch (op_flag) {
> > > +	case SNDRV_CTL_TLV_OP_READ:
> > > +		if (params->get)
> > > +			ret = params->get(kcontrol, tlv, count);
> > > +		break;
> > > +	case SNDRV_CTL_TLV_OP_WRITE:
> > > +		if (params->put)
> > > +			ret = params->put(kcontrol, tlv, count);
> > > +		break;
> > > +	}
> > > +	return ret;
> > > +}
> > 
> > Should this function be removed, I am assuming it is a hang over
> > from the earlier TLV implementation?
> 
> Yes, and bytes_ext_info() is also missing static.
> 
> 
> Takashi

Thanks for the review! it is marked static in the next version.

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ