Re: [PATCH] greybus: audio: remove unused code

2020-05-13 Thread Mark Greer
working again they can take a look at the git history. Thanks for this, Alexandre. Acked-by: Mark Greer ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH 7/9] staging: greybus: move core include files to include/linux/greybus/

2019-08-27 Thread Mark Greer
> Cc: Alex Elder > Cc: Vaibhav Agarwal > Cc: Mark Greer > Cc: Viresh Kumar > Cc: Rui Miguel Silva > Cc: David Lin > Cc: "Bryan O'Donoghue" > Cc: greybus-...@lists.linaro.org > Cc: de...@driverdev.osuosl.org > Sign

Re: [PATCH 2/9] staging: greybus: remove license "boilerplate"

2019-08-27 Thread Mark Greer
: Alex Elder > Cc: Vaibhav Agarwal > Cc: Mark Greer > Cc: Viresh Kumar > Cc: "Bryan O'Donoghue" > Cc: greybus-...@lists.linaro.org > Cc: de...@driverdev.osuosl.org > Signed-off-by: Greg Kroah-Hartman > --- Acked-by: Mark Greer _

Re: [PATCH] staging: greybus: remove redundant assignment to variable is_empty

2019-07-04 Thread Mark Greer
udio_manager_module *module, *next; > - int is_empty = 1; > + int is_empty; > > down_write(_rwsem); Reviewed-by: Mark Greer ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH] greybus: audio_manager: fix a missing check of ida_simple_get

2019-04-30 Thread Mark Greer
for not responding until now. For some strange reason, email from this list are being delayed. I just got this today (April 30). Thanks for the patch, Kangjie, and thanks for the review, Vaibhav. And FWIW, Reviewed-by: Mark Greer Mark -- ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH] staging: greybus: fix spelling mistake: "Inavlid" -> "Invalid"

2018-05-22 Thread Mark Greer
nt=%d for %s\n", > + dev_err(module->dev, "Invalid kcontrol count=%d for %s\n", > w->ncontrols, w->name); > return ret; > } Acked-by: Mark Greer <mgr...@animalcreek.com> __

Re: [PATCH v3] staging: greybus: Fix warning to limit chars per line

2018-04-06 Thread Mark Greer
ice_type should be same as defined in audio.h > + * (Android media layer) > + */ > enum { > GBAUDIO_DEVICE_NONE = 0x0, > /* reserved bits */ > -- > 1.9.1 Reviewed-by: Mark Greer <mgr...@animalcreek.com> _

Re: [PATCH 02/11] staging: greybus: Remove redundant license text

2017-11-07 Thread Mark Greer
was removed. > > Cc: Vaibhav Hiremath <hvaibhav.li...@gmail.com> > Cc: Johan Hovold <jo...@kernel.org> > Cc: Alex Elder <el...@kernel.org> > Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org> > Cc: Vaibhav Agarwal <vaibhav...@gmail.com> > Cc: Mark

Re: [PATCH 01/11] staging: greybus: add SPDX identifiers to all greybus driver files

2017-11-07 Thread Mark Greer
Johan Hovold <jo...@kernel.org> > Cc: Alex Elder <el...@kernel.org> > Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org> > Cc: Vaibhav Hiremath <hvaibhav.li...@gmail.com> > Cc: Vaibhav Agarwal <vaibhav...@gmail.com> > Cc: Mark Greer <mgr...@animalcreek.c

Re: [PATCH 2/3] greybus: audio: don't inclide rwlock.h directly.

2017-10-05 Thread Mark Greer
On Thu, Oct 05, 2017 at 02:56:54PM +0200, Sebastian Andrzej Siewior wrote: > rwlock.h should not be included directly. Instead linux/splinlock.h > should be included. One thing it does is to break the RT build. > > Cc: Vaibhav Agarwal <vaibhav...@gmail.com> >

Re: [PATCH] staging: greybus: audio: constify snd_soc_dai_ops structures

2017-08-21 Thread Mark Greer
dai_ops = { > +static const struct snd_soc_dai_ops gbcodec_dai_ops = { > .startup = gbcodec_startup, > .shutdown = gbcodec_shutdown, > .hw_params = gbcodec_hw_params, Thanks Arvind. Acked-by: Mark Greer <mgr...@animalcreek.com> ___ dev

Re: [PATCH -next] staging: greybus: audio_gb.c: Change uint32_t to u32

2017-01-22 Thread Mark Greer
Prefer kernel type 'u32' over 'uint32_t' > + uint32_t format, uint32_t rate, u8 channels, > > Signed-off-by: Marcos Paulo de Souza <marcos.souza@gmail.com> > --- Good catch, thanks. Acked-by: Mark Greer <mgr...@animalcreek.com> ___

Re: [PATCH v3 0/4] Cleanup greybus audio driver

2017-01-18 Thread Mark Greer
are accepted there, I'll share relevant patches > for GB Audio codec driver as well. > > Changes from v2: > - patch 1/4 > - Update commit message - Mark Greer > - Move le32_to_cpu change to patch 4/4 - Mark Greer > - patch 3/4 > - Remove junk codec register rel

Re: [PATCH v2 4/4] staging: greybus: audio: Ensure proper byte order

2017-01-17 Thread Mark Greer
On Tue, Jan 17, 2017 at 08:19:30PM +0530, Vaibhav Agarwal wrote: > From: Vaibhav Agarwal > > Proper byte order was completely disregarded for multi byte data shared > between AP and module (and APB1). Fix this. > > Signed-off-by: Vaibhav Agarwal

Re: [PATCH v2 1/4] staging: greybus: audio: Avoid less than zero check for le32 variable

2017-01-17 Thread Mark Greer
Hi Vaibhav. On Tue, Jan 17, 2017 at 08:19:27PM +0530, Vaibhav Agarwal wrote: > mixer control->info call back function checks for -ve values to rebase > min and max values. However, le32 variable is used to fetch values from > GB module FW. Thus -ve value checking is not required. Fix this!! nit:

Re: [PATCH v2 2/4] staging: greybus: audio: Initialize sig_bits before configuring hwparams

2017-01-17 Thread Mark Greer
BridgeA. > > Usually, this is dependent on codec capability and thus populated via > codec dai_driver definition. In our case, it is fixed to 16 based on the > data format, container supported. > > Signed-off-by: Vaibhav Agarwal <vaibhav.agar...@linaro.org> > -

Re: [PATCH v2 3/4] staging: greybus: audio: Cleanup junk codec registers

2017-01-17 Thread Mark Greer
On Tue, Jan 17, 2017 at 08:19:29PM +0530, Vaibhav Agarwal wrote: > From: Vaibhav Agarwal > > Dummy codec register were initially added while populating dummy codec > mixer controls until module topology parser was available. Now, these > dummy registers are nowhere