* [GIT PULL for 3.2-rc5] media fixes
@ 2011-12-12 16:47 Mauro Carvalho Chehab
2011-12-12 17:05 ` Antti Palosaari
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Mauro Carvalho Chehab @ 2011-12-12 16:47 UTC (permalink / raw)
To: Linus Torvalds
Cc: Andrew Morton, Linux Media Mailing List,
Linux Kernel Mailing List
Hi Linus,
Please pull from:
git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media v4l_for_linus
For a couple fixes for media drivers.
The changes are:
- ati_remote (new driver for 3.2): Fix the scancode tables;
- af9015: fix some issues with firmware load;
- au0828: (trivial) add device ID's for some devices;
- omap3 and s5p: several small fixes;
- Update MAINTAINERS entry to cover /drivers/staging/media and
media DocBook;
- a few other small trivial fixes.
Thanks!
Mauro
-
The following changes since commit dc47ce90c3a822cd7c9e9339fe4d5f61dcb26b50:
Linux 3.2-rc5 (2011-12-09 15:09:32 -0800)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media v4l_for_linus
Anssi Hannula (1):
[media] ati_remote: switch to single-byte scancodes
Antti Palosaari (3):
[media] af9015: limit I2C access to keep FW happy
[media] tda18218: fix 6 MHz default IF frequency
[media] mxl5007t: fix reg read
Dan Carpenter (1):
[media] V4L: mt9t112: use after free in mt9t112_probe()
Dmitry Artamonow (1):
[media] omap3isp: fix compilation of ispvideo.c
Gary Thomas (1):
[media] omap_vout: Fix compile error in 3.1
Guennadi Liakhovetski (2):
[media] V4L: soc-camera: fix compiler warnings on 64-bit platforms
[media] V4L: mt9m111: fix uninitialised mutex
Janusz Krzysztofik (1):
[media] V4L: omap1_camera: fix missing <linux/module.h> include
Joe Perches (1):
[media] [trivial] omap24xxcam-dma: Fix logical test
Marek Szyprowski (1):
[media] media: video: s5p-tv: fix build break
Mauro Carvalho Chehab (1):
MAINTAINERS: Update media entries
Michael Krufky (3):
[media] au0828: add missing USB ID 2040:7260
[media] au0828: add missing USB ID 2040:7213
[media] au0828: add missing models 72101, 72201 & 72261 to the model matrix
Peter Korsgaard (1):
[media] s5p_mfc_enc: fix s/H264/H263/ typo
Randy Dunlap (1):
[media] media/staging: fix allyesconfig build error
Sylwester Nawrocki (10):
[media] s5p-fimc: Fix wrong pointer dereference when unregistering sensors
[media] s5p-fimc: Fix error in the capture subdev deinitialization
[media] s5p-fimc: Fix initialization for proper system suspend support
[media] s5p-fimc: Fix buffer dequeue order issue
[media] s5p-fimc: Allow probe() to succeed with null platform data
[media] s5p-fimc: Adjust pixel height alignments according to the IP revision
[media] s5p-fimc: Fail driver probing when sensor configuration is wrong
[media] s5p-fimc: Use correct fourcc for RGB565 colour format
[media] m5mols: Fix set_fmt to return proper pixel format code
[media] s5p-fimc: Fix camera input configuration in subdev operations
Thomas Jarosch (1):
[media] m5mols: Fix logic in sanity check
Tomi Valkeinen (1):
[media] omap_vout: fix crash if no driver for a display
MAINTAINERS | 2 +
drivers/media/common/tuners/mxl5007t.c | 3 +-
drivers/media/common/tuners/tda18218.c | 2 +-
drivers/media/dvb/dvb-usb/af9015.c | 97 ++++++++++++++++
drivers/media/dvb/dvb-usb/af9015.h | 7 +
drivers/media/rc/ati_remote.c | 111 +++++++++----------
drivers/media/rc/keymaps/rc-ati-x10.c | 96 ++++++++--------
drivers/media/rc/keymaps/rc-medion-x10.c | 128 +++++++++++-----------
drivers/media/rc/keymaps/rc-snapstream-firefly.c | 114 ++++++++++----------
drivers/media/video/au0828/au0828-cards.c | 7 +
drivers/media/video/m5mols/m5mols.h | 2 -
drivers/media/video/m5mols/m5mols_core.c | 22 ++--
drivers/media/video/mt9m111.c | 1 +
drivers/media/video/mt9t112.c | 4 +-
drivers/media/video/omap/omap_vout.c | 9 ++
drivers/media/video/omap1_camera.c | 1 +
drivers/media/video/omap24xxcam-dma.c | 2 +-
drivers/media/video/omap3isp/ispvideo.c | 1 +
drivers/media/video/ov6650.c | 2 +-
drivers/media/video/s5p-fimc/fimc-capture.c | 14 ++-
drivers/media/video/s5p-fimc/fimc-core.c | 24 ++--
drivers/media/video/s5p-fimc/fimc-core.h | 2 +
drivers/media/video/s5p-fimc/fimc-mdevice.c | 43 +++++---
drivers/media/video/s5p-fimc/fimc-reg.c | 15 ++-
drivers/media/video/s5p-mfc/s5p_mfc_enc.c | 2 +-
drivers/media/video/s5p-tv/mixer_video.c | 1 +
drivers/media/video/sh_mobile_ceu_camera.c | 34 ++++--
drivers/media/video/sh_mobile_csi2.c | 4 +-
drivers/media/video/soc_camera.c | 3 +-
drivers/staging/media/as102/as102_drv.c | 4 +-
drivers/staging/media/as102/as102_drv.h | 3 +-
include/media/soc_camera.h | 7 +-
32 files changed, 461 insertions(+), 306 deletions(-)
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [GIT PULL for 3.2-rc5] media fixes
2011-12-12 16:47 [GIT PULL for 3.2-rc5] media fixes Mauro Carvalho Chehab
@ 2011-12-12 17:05 ` Antti Palosaari
2011-12-12 17:27 ` Sylwester Nawrocki
2011-12-19 15:41 ` Mauro Carvalho Chehab
2 siblings, 0 replies; 5+ messages in thread
From: Antti Palosaari @ 2011-12-12 17:05 UTC (permalink / raw)
To: Mauro Carvalho Chehab
Cc: Linus Torvalds, Andrew Morton, Linux Media Mailing List,
Linux Kernel Mailing List
On 12/12/2011 06:47 PM, Mauro Carvalho Chehab wrote:
> Hi Linus,
>
> Please pull from:
> git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media
> v4l_for_linus
>
> For a couple fixes for media drivers.
> The changes are:
> - ati_remote (new driver for 3.2): Fix the scancode tables;
> - af9015: fix some issues with firmware load;
> - au0828: (trivial) add device ID's for some devices;
> - omap3 and s5p: several small fixes;
> - Update MAINTAINERS entry to cover /drivers/staging/media and
> media DocBook;
> - a few other small trivial fixes.
>
> Thanks!
> Mauro
>
> -
>
> The following changes since commit
> dc47ce90c3a822cd7c9e9339fe4d5f61dcb26b50:
>
> Linux 3.2-rc5 (2011-12-09 15:09:32 -0800)
>
> are available in the git repository at:
> git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media
> v4l_for_linus
>
> Antti Palosaari (3):
> [media] af9015: limit I2C access to keep FW happy
Hey, now there is misunderstanding. I don't want that patch to be 3.2.
It is surely kinda a bug fix, but I see it too risky at that phase.
Please delay that for the 3.3 and apply with my latest af9013 rewrite.
> [media] tda18218: fix 6 MHz default IF frequency
> [media] mxl5007t: fix reg read
regards
Antti
--
http://palosaari.fi/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [GIT PULL for 3.2-rc5] media fixes
2011-12-12 16:47 [GIT PULL for 3.2-rc5] media fixes Mauro Carvalho Chehab
2011-12-12 17:05 ` Antti Palosaari
@ 2011-12-12 17:27 ` Sylwester Nawrocki
2011-12-12 17:45 ` Mauro Carvalho Chehab
2011-12-19 15:41 ` Mauro Carvalho Chehab
2 siblings, 1 reply; 5+ messages in thread
From: Sylwester Nawrocki @ 2011-12-12 17:27 UTC (permalink / raw)
To: Mauro Carvalho Chehab
Cc: Linus Torvalds, Andrew Morton, Linux Media Mailing List,
Linux Kernel Mailing List
Hi Mauro,
On 12/12/2011 05:47 PM, Mauro Carvalho Chehab wrote:
> Hi Linus,
>
> Please pull from:
> git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media v4l_for_linus
>
> For a couple fixes for media drivers.
> The changes are:
> - ati_remote (new driver for 3.2): Fix the scancode tables;
> - af9015: fix some issues with firmware load;
> - au0828: (trivial) add device ID's for some devices;
> - omap3 and s5p: several small fixes;
> - Update MAINTAINERS entry to cover /drivers/staging/media and
> media DocBook;
> - a few other small trivial fixes.
>
> Thanks!
> Mauro
[...]
>
> Sylwester Nawrocki (10):
> [media] s5p-fimc: Fix wrong pointer dereference when unregistering sensors
> [media] s5p-fimc: Fix error in the capture subdev deinitialization
> [media] s5p-fimc: Fix initialization for proper system suspend support
> [media] s5p-fimc: Fix buffer dequeue order issue
> [media] s5p-fimc: Allow probe() to succeed with null platform data
> [media] s5p-fimc: Adjust pixel height alignments according to the IP
> revision
> [media] s5p-fimc: Fail driver probing when sensor configuration is wrong
> [media] s5p-fimc: Use correct fourcc for RGB565 colour format
> [media] m5mols: Fix set_fmt to return proper pixel format code
> [media] s5p-fimc: Fix camera input configuration in subdev operations
There is one more quite important patch left out:
http://git.infradead.org/users/kmpark/linux-2.6-samsung/commitdiff/817069678ab57150b21cd0705e2f3a3b2b6509f4
It was included in my recent pull request. It would be good to have in v3.2
too. Are you planning to add it to a next pull request to Linus ?
--
Thanks,
Sylwester
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [GIT PULL for 3.2-rc5] media fixes
2011-12-12 17:27 ` Sylwester Nawrocki
@ 2011-12-12 17:45 ` Mauro Carvalho Chehab
0 siblings, 0 replies; 5+ messages in thread
From: Mauro Carvalho Chehab @ 2011-12-12 17:45 UTC (permalink / raw)
To: Sylwester Nawrocki
Cc: Linus Torvalds, Andrew Morton, Linux Media Mailing List,
Linux Kernel Mailing List
On 12-12-2011 15:27, Sylwester Nawrocki wrote:
> Hi Mauro,
>
> On 12/12/2011 05:47 PM, Mauro Carvalho Chehab wrote:
>> Hi Linus,
>>
>> Please pull from:
>> git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media v4l_for_linus
>>
>> For a couple fixes for media drivers.
>> The changes are:
>> - ati_remote (new driver for 3.2): Fix the scancode tables;
>> - af9015: fix some issues with firmware load;
>> - au0828: (trivial) add device ID's for some devices;
>> - omap3 and s5p: several small fixes;
>> - Update MAINTAINERS entry to cover /drivers/staging/media and
>> media DocBook;
>> - a few other small trivial fixes.
>>
>> Thanks!
>> Mauro
> [...]
>
>>
>> Sylwester Nawrocki (10):
>> [media] s5p-fimc: Fix wrong pointer dereference when unregistering sensors
>> [media] s5p-fimc: Fix error in the capture subdev deinitialization
>> [media] s5p-fimc: Fix initialization for proper system suspend support
>> [media] s5p-fimc: Fix buffer dequeue order issue
>> [media] s5p-fimc: Allow probe() to succeed with null platform data
>> [media] s5p-fimc: Adjust pixel height alignments according to the IP
>> revision
>> [media] s5p-fimc: Fail driver probing when sensor configuration is wrong
>> [media] s5p-fimc: Use correct fourcc for RGB565 colour format
>> [media] m5mols: Fix set_fmt to return proper pixel format code
>> [media] s5p-fimc: Fix camera input configuration in subdev operations
>
> There is one more quite important patch left out:
>
> http://git.infradead.org/users/kmpark/linux-2.6-samsung/commitdiff/817069678ab57150b21cd0705e2f3a3b2b6509f4
>
> It was included in my recent pull request. It would be good to have in v3.2
> too. Are you planning to add it to a next pull request to Linus ?
Not likely, but it might be possible.
I'll be out the rest of this week due to a travel for a series of meetings
at the office.
I might not be able to prepare another pull request until next week. After
having it done, I should wait for a couple days for it to be at -next, but
then it will almost be Xmas. Let's see.
Regards,
Mauro
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [GIT PULL for 3.2-rc5] media fixes
2011-12-12 16:47 [GIT PULL for 3.2-rc5] media fixes Mauro Carvalho Chehab
2011-12-12 17:05 ` Antti Palosaari
2011-12-12 17:27 ` Sylwester Nawrocki
@ 2011-12-19 15:41 ` Mauro Carvalho Chehab
2 siblings, 0 replies; 5+ messages in thread
From: Mauro Carvalho Chehab @ 2011-12-19 15:41 UTC (permalink / raw)
To: Linus Torvalds
Cc: Andrew Morton, Linux Media Mailing List,
Linux Kernel Mailing List, Antti Palosaari
On 12-12-2011 14:47, Mauro Carvalho Chehab wrote:
> Hi Linus,
>
> Please pull from:
> git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media v4l_for_linus
>
> For a couple fixes for media drivers.
> The changes are:
> - ati_remote (new driver for 3.2): Fix the scancode tables;
> - af9015: fix some issues with firmware load;
> - au0828: (trivial) add device ID's for some devices;
> - omap3 and s5p: several small fixes;
> - Update MAINTAINERS entry to cover /drivers/staging/media and
> media DocBook;
> - a few other small trivial fixes.
>
> Thanks!
> Mauro
>
Hi Linus,
Due to Antti's afraid of breaking something, I've added a new patch
to this tree reverting his original one.
So, this patch series have:
- ati_remote (new driver for 3.2): Fix the scancode tables;
- au0828: (trivial) add device ID's for some devices;
- omap3 and s5p: several small fixes;
- Update MAINTAINERS entry to cover /drivers/staging/media and
media DocBook;
- a few other small trivial fixes.
Unfortunately, I had a very busy time last week, working every day
from 9 to 24h, and then I had to drive for about 12h at the weekend,
due to Xmas/New Year's celebrations. So, I failed to add the extra
"revert" patch to linux-next. The other patches are there at -next
since 7 days ago.
So, please pull from:
git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media v4l_for_linus
Thanks!
Mauro
-
Latest commit at the branch:
4b5d8da88e3fab76700e89488a8c65c54facb9a3 Revert "[media] af9015: limit I2C access to keep FW happy"
The following changes since commit 384703b8e6cd4c8ef08512e596024e028c91c339:
Linux 3.2-rc6 (2011-12-16 18:36:26 -0800)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media v4l_for_linus
Anssi Hannula (1):
[media] ati_remote: switch to single-byte scancodes
Antti Palosaari (3):
[media] af9015: limit I2C access to keep FW happy
[media] tda18218: fix 6 MHz default IF frequency
[media] mxl5007t: fix reg read
Dan Carpenter (1):
[media] V4L: mt9t112: use after free in mt9t112_probe()
Dmitry Artamonow (1):
[media] omap3isp: fix compilation of ispvideo.c
Gary Thomas (1):
[media] omap_vout: Fix compile error in 3.1
Guennadi Liakhovetski (2):
[media] V4L: soc-camera: fix compiler warnings on 64-bit platforms
[media] V4L: mt9m111: fix uninitialised mutex
Janusz Krzysztofik (1):
[media] V4L: omap1_camera: fix missing <linux/module.h> include
Joe Perches (1):
[media] [trivial] omap24xxcam-dma: Fix logical test
Marek Szyprowski (1):
[media] media: video: s5p-tv: fix build break
Mauro Carvalho Chehab (2):
MAINTAINERS: Update media entries
Revert "[media] af9015: limit I2C access to keep FW happy"
Michael Krufky (3):
[media] au0828: add missing USB ID 2040:7260
[media] au0828: add missing USB ID 2040:7213
[media] au0828: add missing models 72101, 72201 & 72261 to the model matrix
Peter Korsgaard (1):
[media] s5p_mfc_enc: fix s/H264/H263/ typo
Randy Dunlap (1):
[media] media/staging: fix allyesconfig build error
Sylwester Nawrocki (10):
[media] s5p-fimc: Fix wrong pointer dereference when unregistering sensors
[media] s5p-fimc: Fix error in the capture subdev deinitialization
[media] s5p-fimc: Fix initialization for proper system suspend support
[media] s5p-fimc: Fix buffer dequeue order issue
[media] s5p-fimc: Allow probe() to succeed with null platform data
[media] s5p-fimc: Adjust pixel height alignments according to the IP revision
[media] s5p-fimc: Fail driver probing when sensor configuration is wrong
[media] s5p-fimc: Use correct fourcc for RGB565 colour format
[media] m5mols: Fix set_fmt to return proper pixel format code
[media] s5p-fimc: Fix camera input configuration in subdev operations
Thomas Jarosch (1):
[media] m5mols: Fix logic in sanity check
Tomi Valkeinen (1):
[media] omap_vout: fix crash if no driver for a display
MAINTAINERS | 2 +
drivers/media/common/tuners/mxl5007t.c | 3 +-
drivers/media/common/tuners/tda18218.c | 2 +-
drivers/media/rc/ati_remote.c | 111 +++++++++----------
drivers/media/rc/keymaps/rc-ati-x10.c | 96 ++++++++--------
drivers/media/rc/keymaps/rc-medion-x10.c | 128 +++++++++++-----------
drivers/media/rc/keymaps/rc-snapstream-firefly.c | 114 ++++++++++----------
drivers/media/video/au0828/au0828-cards.c | 7 +
drivers/media/video/m5mols/m5mols.h | 2 -
drivers/media/video/m5mols/m5mols_core.c | 22 ++--
drivers/media/video/mt9m111.c | 1 +
drivers/media/video/mt9t112.c | 4 +-
drivers/media/video/omap/omap_vout.c | 9 ++
drivers/media/video/omap1_camera.c | 1 +
drivers/media/video/omap24xxcam-dma.c | 2 +-
drivers/media/video/omap3isp/ispvideo.c | 1 +
drivers/media/video/ov6650.c | 2 +-
drivers/media/video/s5p-fimc/fimc-capture.c | 14 ++-
drivers/media/video/s5p-fimc/fimc-core.c | 24 ++--
drivers/media/video/s5p-fimc/fimc-core.h | 2 +
drivers/media/video/s5p-fimc/fimc-mdevice.c | 43 +++++---
drivers/media/video/s5p-fimc/fimc-reg.c | 15 ++-
drivers/media/video/s5p-mfc/s5p_mfc_enc.c | 2 +-
drivers/media/video/s5p-tv/mixer_video.c | 1 +
drivers/media/video/sh_mobile_ceu_camera.c | 34 ++++--
drivers/media/video/sh_mobile_csi2.c | 4 +-
drivers/media/video/soc_camera.c | 3 +-
drivers/staging/media/as102/as102_drv.c | 4 +-
drivers/staging/media/as102/as102_drv.h | 3 +-
include/media/soc_camera.h | 7 +-
30 files changed, 357 insertions(+), 306 deletions(-)
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-12-19 15:42 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-12 16:47 [GIT PULL for 3.2-rc5] media fixes Mauro Carvalho Chehab
2011-12-12 17:05 ` Antti Palosaari
2011-12-12 17:27 ` Sylwester Nawrocki
2011-12-12 17:45 ` Mauro Carvalho Chehab
2011-12-19 15:41 ` Mauro Carvalho Chehab
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).