Re: [PATCH v2] drivers: most: add ALSA sound driver

2020-11-17 Thread Christian.Gromm
On Tue, 2020-11-17 at 11:41 +0300, Dan Carpenter wrote: > EXTERNAL EMAIL: Do not click links or open attachments unless you know the > content is safe > > On Tue, Nov 17, 2020 at 08:08:50AM +, christian.gr...@microchip.com wrote: > > On Tue, 2020-11-10 at 11:48 +0300, Dan Carpenter wrote: > >

Re: [PATCH v2] drivers: most: add ALSA sound driver

2020-11-17 Thread Christian.Gromm
On Tue, 2020-11-10 at 11:48 +0300, Dan Carpenter wrote: > EXTERNAL EMAIL: Do not click links or open attachments unless you know the > content is safe > > On Fri, Nov 06, 2020 at 05:30:54PM +0100, Christian Gromm wrote: > > +static struct list_head adpt_list; > > + > > +#define MOST_PCM_INFO (SND

Re: [PATCH v2] drivers: most: add ALSA sound driver

2020-11-17 Thread Dan Carpenter
On Tue, Nov 17, 2020 at 08:08:50AM +, christian.gr...@microchip.com wrote: > On Tue, 2020-11-10 at 11:48 +0300, Dan Carpenter wrote: > > EXTERNAL EMAIL: Do not click links or open attachments unless you know the > > content is safe > > > > On Fri, Nov 06, 2020 at 05:30:54PM +0100, Christian G

Re: [PATCH v2] drivers: most: add ALSA sound driver

2020-11-10 Thread Dan Carpenter
On Fri, Nov 06, 2020 at 05:30:54PM +0100, Christian Gromm wrote: > +static struct list_head adpt_list; > + > +#define MOST_PCM_INFO (SNDRV_PCM_INFO_MMAP | \ > +SNDRV_PCM_INFO_MMAP_VALID | \ > +SNDRV_PCM_INFO_BATCH | \ > +SNDRV_PCM_INFO_INT

[PATCH v2] drivers: most: add ALSA sound driver

2020-11-06 Thread Christian Gromm
This patch moves the ALSA sound driver out of the staging area and adds it to the stable part of the MOST driver. Modifications to the Makefiles and Kconfigs are done accordingly to not break the build. Signed-off-by: Christian Gromm --- v2: Reported-by: Greg Kroah-Hartman submi