Re: [PATCH] soundwire: cdns: Fix compilation error on arm64

2019-05-26 Thread Vinod Koul
On 04-04-19, 09:12, Jan Kotas wrote: > On arm64 the cadence_master.c file doesn't compile. > > readl and writel are undefined. > This patch fixes that by including io.h. Applied, thanks -- ~Vinod

Re: [alsa-devel] [PATCH] soundwire: cdns: Fix compilation error on arm64

2019-05-09 Thread Jan Kotas
Hello, Is there a reason for not accepting this patch? Do you want me to change anything in v2? Regards, Jan > On 16 Apr 2019, at 10:43, Jan Kotas wrote: > >> On 14 Apr 2019, at 11:44, Vinod Koul wrote: >> >> >> On 04-04-19, 09:12, Jan Kotas wrote: >>> On arm64 the cadence_master.c file doe

Re: [alsa-devel] [PATCH] soundwire: cdns: Fix compilation error on arm64

2019-04-16 Thread Jan Kotas
> On 14 Apr 2019, at 11:44, Vinod Koul wrote: > > > On 04-04-19, 09:12, Jan Kotas wrote: >> On arm64 the cadence_master.c file doesn't compile. >> >> readl and writel are undefined. >> This patch fixes that by including io.h. > > And I cant verify that without hacking kconfig to force compile

Re: [alsa-devel] [PATCH] soundwire: cdns: Fix compilation error on arm64

2019-04-15 Thread Pierre-Louis Bossart
diff --git a/drivers/soundwire/cadence_master.c b/drivers/soundwire/cadence_master.c index cb6a331f4..0b5bcc209 100644 --- a/drivers/soundwire/cadence_master.c +++ b/drivers/soundwire/cadence_master.c @@ -9,6 +9,7 @@ #include #include #include +#include Why not add asm/io.h which i

Re: [PATCH] soundwire: cdns: Fix compilation error on arm64

2019-04-14 Thread Vinod Koul
On 04-04-19, 09:12, Jan Kotas wrote: > On arm64 the cadence_master.c file doesn't compile. > > readl and writel are undefined. > This patch fixes that by including io.h. And I cant verify that without hacking kconfig to force compile the lib. > > Signed-off-by: Jan Kotas > --- > drivers/sound

Re: [PATCH] soundwire: cdns: Fix compilation error on arm64

2019-04-04 Thread Mukesh Ojha
On 4/4/2019 1:42 PM, Jan Kotas wrote: On arm64 the cadence_master.c file doesn't compile. readl and writel are undefined. This patch fixes that by including io.h. Signed-off-by: Jan Kotas Reviewed-by: Mukesh Ojha Cheers, -Mukesh --- drivers/soundwire/cadence_master.c | 1 + 1 file cha

[PATCH] soundwire: cdns: Fix compilation error on arm64

2019-04-04 Thread Jan Kotas
On arm64 the cadence_master.c file doesn't compile. readl and writel are undefined. This patch fixes that by including io.h. Signed-off-by: Jan Kotas --- drivers/soundwire/cadence_master.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/soundwire/cadence_master.c b/drivers/soundwir