* [GIT PULL FOR v3.12] VSP1 fixes
@ 2013-10-18 21:09 Laurent Pinchart
2013-11-29 16:53 ` Mauro Carvalho Chehab
0 siblings, 1 reply; 3+ messages in thread
From: Laurent Pinchart @ 2013-10-18 21:09 UTC (permalink / raw)
To: linux-media
Hi Mauro,
Sorry for sending this so late in the -rc cycle. These three patches fix
issues with the VSP1 driver, including two compile issues that would break
allyesconfig and other compilation tests on v3.12.
The following changes since commit 9c9cff55bf4f13dc2fffb5abe466f13e4ac155f9:
[media] saa7134: Fix crash when device is closed before streamoff
(2013-10-14 06:37:00 -0300)
are available in the git repository at:
git://linuxtv.org/pinchartl/media.git v4l2/fixes
for you to fetch changes up to b3e6a3ad4914d575a4026314c9fece0e47d4499e:
v4l: VIDEO_RENESAS_VSP1 should depend on HAS_DMA (2013-10-15 17:37:46 +0200)
----------------------------------------------------------------
Geert Uytterhoeven (1):
v4l: VIDEO_RENESAS_VSP1 should depend on HAS_DMA
Laurent Pinchart (1):
v4l: vsp1: Replace ioread32/iowrite32 I/O accessors with readl/writel
Wei Yongjun (1):
v4l: vsp1: Fix error return code in vsp1_video_init()
drivers/media/platform/Kconfig | 2 +-
drivers/media/platform/vsp1/vsp1.h | 4 ++--
drivers/media/platform/vsp1/vsp1_video.c | 4 +++-
3 files changed, 6 insertions(+), 4 deletions(-)
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [GIT PULL FOR v3.12] VSP1 fixes
2013-10-18 21:09 [GIT PULL FOR v3.12] VSP1 fixes Laurent Pinchart
@ 2013-11-29 16:53 ` Mauro Carvalho Chehab
2013-11-29 17:00 ` Laurent Pinchart
0 siblings, 1 reply; 3+ messages in thread
From: Mauro Carvalho Chehab @ 2013-11-29 16:53 UTC (permalink / raw)
To: Laurent Pinchart; +Cc: linux-media
Em Fri, 18 Oct 2013 23:09:21 +0200
Laurent Pinchart <laurent.pinchart@ideasonboard.com> escreveu:
> Hi Mauro,
>
> Sorry for sending this so late in the -rc cycle. These three patches fix
> issues with the VSP1 driver, including two compile issues that would break
> allyesconfig and other compilation tests on v3.12.
>
> The following changes since commit 9c9cff55bf4f13dc2fffb5abe466f13e4ac155f9:
>
> [media] saa7134: Fix crash when device is closed before streamoff
> (2013-10-14 06:37:00 -0300)
>
> are available in the git repository at:
>
> git://linuxtv.org/pinchartl/media.git v4l2/fixes
>
> for you to fetch changes up to b3e6a3ad4914d575a4026314c9fece0e47d4499e:
>
> v4l: VIDEO_RENESAS_VSP1 should depend on HAS_DMA (2013-10-15 17:37:46 +0200)
>
> ----------------------------------------------------------------
> Geert Uytterhoeven (1):
> v4l: VIDEO_RENESAS_VSP1 should depend on HAS_DMA
This patch was already applied. I likely applied it directly, when I saw
your acked-by for this one at patchwork.
> Laurent Pinchart (1):
> v4l: vsp1: Replace ioread32/iowrite32 I/O accessors with readl/writel
IMHO, this is not needed anymore. At least on my ktests, it is compiling fine
on all archs that support allyesconfig/allmodconfig.
On the other hand, readl/writel is not implemented on several archs.
>
> Wei Yongjun (1):
> v4l: vsp1: Fix error return code in vsp1_video_init()
Applied, thanks!
>
> drivers/media/platform/Kconfig | 2 +-
> drivers/media/platform/vsp1/vsp1.h | 4 ++--
> drivers/media/platform/vsp1/vsp1_video.c | 4 +++-
> 3 files changed, 6 insertions(+), 4 deletions(-)
>
--
Cheers,
Mauro
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [GIT PULL FOR v3.12] VSP1 fixes
2013-11-29 16:53 ` Mauro Carvalho Chehab
@ 2013-11-29 17:00 ` Laurent Pinchart
0 siblings, 0 replies; 3+ messages in thread
From: Laurent Pinchart @ 2013-11-29 17:00 UTC (permalink / raw)
To: Mauro Carvalho Chehab; +Cc: linux-media
Hi Mauro,
On Friday 29 November 2013 14:53:45 Mauro Carvalho Chehab wrote:
> Laurent Pinchart escreveu:
> > Hi Mauro,
> >
> > Sorry for sending this so late in the -rc cycle. These three patches fix
> > issues with the VSP1 driver, including two compile issues that would break
> > allyesconfig and other compilation tests on v3.12.
> >
> > The following changes since commit
9c9cff55bf4f13dc2fffb5abe466f13e4ac155f9:
> > [media] saa7134: Fix crash when device is closed before streamoff
> >
> > (2013-10-14 06:37:00 -0300)
> >
> > are available in the git repository at:
> > git://linuxtv.org/pinchartl/media.git v4l2/fixes
> >
> > for you to fetch changes up to b3e6a3ad4914d575a4026314c9fece0e47d4499e:
> > v4l: VIDEO_RENESAS_VSP1 should depend on HAS_DMA (2013-10-15 17:37:46
> > +0200)>
> > ----------------------------------------------------------------
> >
> > Geert Uytterhoeven (1):
> > v4l: VIDEO_RENESAS_VSP1 should depend on HAS_DMA
>
> This patch was already applied. I likely applied it directly, when I saw
> your acked-by for this one at patchwork.
>
> > Laurent Pinchart (1):
> > v4l: vsp1: Replace ioread32/iowrite32 I/O accessors with
> > readl/writel
>
> IMHO, this is not needed anymore. At least on my ktests, it is compiling
> fine on all archs that support allyesconfig/allmodconfig.
Agreed.
> On the other hand, readl/writel is not implemented on several archs.
>
> > Wei Yongjun (1):
> > v4l: vsp1: Fix error return code in vsp1_video_init()
>
> Applied, thanks!
Thank you.
> > drivers/media/platform/Kconfig | 2 +-
> > drivers/media/platform/vsp1/vsp1.h | 4 ++--
> > drivers/media/platform/vsp1/vsp1_video.c | 4 +++-
> > 3 files changed, 6 insertions(+), 4 deletions(-)
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-11-29 17:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-18 21:09 [GIT PULL FOR v3.12] VSP1 fixes Laurent Pinchart
2013-11-29 16:53 ` Mauro Carvalho Chehab
2013-11-29 17:00 ` Laurent Pinchart
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox