public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH 0/8] Fix V4L/DVB/RC warnings
@ 2010-12-27 23:55 Andy Walls
  2010-12-28  3:12 ` Mauro Carvalho Chehab
  0 siblings, 1 reply; 7+ messages in thread
From: Andy Walls @ 2010-12-27 23:55 UTC (permalink / raw)
  To: Mauro Carvalho Chehab; +Cc: Linux Media Mailing List

I have hardware for lirc_zilog.  I can look later this week.
I also have hardware that lirc_i2c handles but not all the hardware it handles.

 IIRC lirc_i2c is very much like ir-kbd-i2c, so do we need it anymore?  I'm not able to check for myself at the moment.

Regards,
Andy

Mauro Carvalho Chehab <mchehab@redhat.com> wrote:

>
>There were several warnings at the subsystem, that were catched with
>gcc version 4.5.1. All of them are fixed on those patches by a 
>trivial patch. So, let's fix them ;)
>
>Now, the only remaining patches are the ones we want to be there:
>
>drivers/staging/lirc/lirc_i2c.c: In function ‘ir_probe’:
>drivers/staging/lirc/lirc_i2c.c:431:3: warning: ‘id’ is deprecated (declared at include/linux/i2c.h:356)
>drivers/staging/lirc/lirc_i2c.c:450:3: warning: ‘id’ is deprecated (declared at include/linux/i2c.h:356)
>drivers/staging/lirc/lirc_i2c.c:479:9: warning: ‘id’ is deprecated (declared at include/linux/i2c.h:356)
>drivers/staging/lirc/lirc_zilog.c: In function ‘ir_probe’:
>drivers/staging/lirc/lirc_zilog.c:1199:2: warning: ‘id’ is deprecated (declared at include/linux/i2c.h:356)
>drivers/media/video/cx88/cx88-i2c.c: In function ‘cx88_i2c_init’:
>drivers/media/video/cx88/cx88-i2c.c:149:2: warning: ‘id’ is deprecated (declared at include/linux/i2c.h:356)
>drivers/media/video/cx88/cx88-vp3054-i2c.c: In function ‘vp3054_i2c_probe’:
>drivers/media/video/cx88/cx88-vp3054-i2c.c:128:2: warning: ‘id’ is deprecated (declared at include/linux/i2c.h:356)
>
>They are basically caused by lirc_i2c and lirc_zilog, that still needs
>to use the legacy .id field at the I2C structs. Somebody with those
>hardware, please fix it.
>
>Thanks,
>Mauro
>
>-
>
>Mauro Carvalho Chehab (8):
>  [media] dmxdev: Fix a compilation warning due to a bad type
>  [media] radio-wl1273: Fix two warnings
>  [media] lirc_zilog: Fix a warning
>  [media] dib7000m/dib7000p: Add support for TRANSMISSION_MODE_4K
>  [media] gspca: Fix a warning for using len before filling it
>  [media] stv090x: Fix some compilation warnings
>  [media] af9013: Fix a compilation warning
>  [media] streamzap: Fix a compilation warning when compiled builtin
>
> drivers/media/dvb/dvb-core/dmxdev.c    |    4 ++--
> drivers/media/dvb/frontends/af9013.c   |    2 +-
> drivers/media/dvb/frontends/dib7000m.c |   10 +++++-----
> drivers/media/dvb/frontends/dib7000p.c |   10 +++++-----
> drivers/media/dvb/frontends/stv090x.c  |    6 +++---
> drivers/media/radio/radio-wl1273.c     |    3 +--
> drivers/media/rc/streamzap.c           |    2 +-
> drivers/media/video/gspca/gspca.c      |    2 +-
> drivers/staging/lirc/lirc_zilog.c      |    1 -
> 9 files changed, 19 insertions(+), 21 deletions(-)
>
>-- 
>1.7.3.4
>
>--
>To unsubscribe from this list: send the line "unsubscribe linux-media" in
>the body of a message to majordomo@vger.kernel.org
>More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 7+ messages in thread
* [PATCH 0/8] Fix V4L/DVB/RC warnings
@ 2010-12-27 16:22 Mauro Carvalho Chehab
  0 siblings, 0 replies; 7+ messages in thread
From: Mauro Carvalho Chehab @ 2010-12-27 16:22 UTC (permalink / raw)
  Cc: Linux Media Mailing List


There were several warnings at the subsystem, that were catched with
gcc version 4.5.1. All of them are fixed on those patches by a 
trivial patch. So, let's fix them ;)

Now, the only remaining patches are the ones we want to be there:

drivers/staging/lirc/lirc_i2c.c: In function ‘ir_probe’:
drivers/staging/lirc/lirc_i2c.c:431:3: warning: ‘id’ is deprecated (declared at include/linux/i2c.h:356)
drivers/staging/lirc/lirc_i2c.c:450:3: warning: ‘id’ is deprecated (declared at include/linux/i2c.h:356)
drivers/staging/lirc/lirc_i2c.c:479:9: warning: ‘id’ is deprecated (declared at include/linux/i2c.h:356)
drivers/staging/lirc/lirc_zilog.c: In function ‘ir_probe’:
drivers/staging/lirc/lirc_zilog.c:1199:2: warning: ‘id’ is deprecated (declared at include/linux/i2c.h:356)
drivers/media/video/cx88/cx88-i2c.c: In function ‘cx88_i2c_init’:
drivers/media/video/cx88/cx88-i2c.c:149:2: warning: ‘id’ is deprecated (declared at include/linux/i2c.h:356)
drivers/media/video/cx88/cx88-vp3054-i2c.c: In function ‘vp3054_i2c_probe’:
drivers/media/video/cx88/cx88-vp3054-i2c.c:128:2: warning: ‘id’ is deprecated (declared at include/linux/i2c.h:356)

They are basically caused by lirc_i2c and lirc_zilog, that still needs
to use the legacy .id field at the I2C structs. Somebody with those
hardware, please fix it.

Thanks,
Mauro

-

Mauro Carvalho Chehab (8):
  [media] dmxdev: Fix a compilation warning due to a bad type
  [media] radio-wl1273: Fix two warnings
  [media] lirc_zilog: Fix a warning
  [media] dib7000m/dib7000p: Add support for TRANSMISSION_MODE_4K
  [media] gspca: Fix a warning for using len before filling it
  [media] stv090x: Fix some compilation warnings
  [media] af9013: Fix a compilation warning
  [media] streamzap: Fix a compilation warning when compiled builtin

 drivers/media/dvb/dvb-core/dmxdev.c    |    4 ++--
 drivers/media/dvb/frontends/af9013.c   |    2 +-
 drivers/media/dvb/frontends/dib7000m.c |   10 +++++-----
 drivers/media/dvb/frontends/dib7000p.c |   10 +++++-----
 drivers/media/dvb/frontends/stv090x.c  |    6 +++---
 drivers/media/radio/radio-wl1273.c     |    3 +--
 drivers/media/rc/streamzap.c           |    2 +-
 drivers/media/video/gspca/gspca.c      |    2 +-
 drivers/staging/lirc/lirc_zilog.c      |    1 -
 9 files changed, 19 insertions(+), 21 deletions(-)

-- 
1.7.3.4


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2011-01-06 21:54 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-27 23:55 [PATCH 0/8] Fix V4L/DVB/RC warnings Andy Walls
2010-12-28  3:12 ` Mauro Carvalho Chehab
2010-12-28 14:14   ` Andy Walls
2010-12-28 14:45     ` Mauro Carvalho Chehab
2010-12-28 22:18       ` Andy Walls
2011-01-06 21:54         ` Jarod Wilson
  -- strict thread matches above, loose matches on Subject: below --
2010-12-27 16:22 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