All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/19] Fix new warnings detected by GCC 6.1
@ 2016-06-24 15:31 Mauro Carvalho Chehab
  2016-06-24 15:31 ` [PATCH 01/19] usbvision: remove some unused vars Mauro Carvalho Chehab
                   ` (18 more replies)
  0 siblings, 19 replies; 26+ messages in thread
From: Mauro Carvalho Chehab @ 2016-06-24 15:31 UTC (permalink / raw)
  Cc: Mauro Carvalho Chehab, Linux Media Mailing List, Mauro Carvalho Chehab

After upgrading to Fedora 24, new warnings started to popup. Fix them.

Mauro Carvalho Chehab (19):
  usbvision: remove some unused vars
  exynos4-is: remove some unused vars
  cx18: use macros instead of static const vars
  m5602_core: move skeletons to the .c file
  m5602_s5k4aa: move skeletons to the .c file
  m5602_mt9m111: move skeletons to the .c file
  m5602_ov9650: move skeletons to the .c file
  m5602_s5k83a: move skeletons to the .c file
  m5602_po1030: move skeletons to the .c file
  m5602_ov7660: move skeletons to the .c file
  cx25821-alsa: shutup a Gcc 6.1 warning
  drxj: comment out the unused nicam_presc_table_val table
  dib0090: comment out the unused tables
  r820t: comment out two ancillary tables
  zr36016: remove some unused tables
  vivid: remove some unused vars
  em28xx-dvb: remove some left over
  adv7842: comment out a table useful for debug
  bdisp: move the V/H filter spec to bdisp-hw.c

 drivers/media/dvb-frontends/dib0090.c           |   6 +
 drivers/media/dvb-frontends/drx39xyj/drxj.c     |   3 +
 drivers/media/i2c/adv7842.c                     |   3 +
 drivers/media/pci/cx18/cx18-driver.c            |   2 +-
 drivers/media/pci/cx18/cx18-driver.h            |   6 +-
 drivers/media/pci/cx18/cx18-ioctl.c             |   2 +-
 drivers/media/pci/cx18/cx18-streams.c           |  12 +-
 drivers/media/pci/cx18/cx18-vbi.c               |   6 +-
 drivers/media/pci/cx25821/cx25821-alsa.c        |   2 +-
 drivers/media/pci/zoran/zr36016.c               |   4 -
 drivers/media/platform/exynos4-is/mipi-csis.c   |  17 --
 drivers/media/platform/sti/bdisp/bdisp-filter.h | 304 -----------------------
 drivers/media/platform/sti/bdisp/bdisp-hw.c     | 305 ++++++++++++++++++++++++
 drivers/media/platform/vivid/vivid-sdr-cap.c    |   2 -
 drivers/media/platform/vivid/vivid-vid-cap.c    |   3 +-
 drivers/media/radio/radio-aztech.c              |   1 -
 drivers/media/tuners/r820t.c                    |  29 +--
 drivers/media/usb/em28xx/em28xx-dvb.c           |  11 -
 drivers/media/usb/gspca/m5602/m5602_bridge.h    |  15 --
 drivers/media/usb/gspca/m5602/m5602_core.c      |  15 ++
 drivers/media/usb/gspca/m5602/m5602_mt9m111.c   | 144 +++++++++++
 drivers/media/usb/gspca/m5602/m5602_mt9m111.h   | 144 -----------
 drivers/media/usb/gspca/m5602/m5602_ov7660.c    | 153 ++++++++++++
 drivers/media/usb/gspca/m5602/m5602_ov7660.h    | 153 ------------
 drivers/media/usb/gspca/m5602/m5602_ov9650.c    | 152 ++++++++++++
 drivers/media/usb/gspca/m5602/m5602_ov9650.h    | 150 ------------
 drivers/media/usb/gspca/m5602/m5602_po1030.c    | 104 ++++++++
 drivers/media/usb/gspca/m5602/m5602_po1030.h    | 104 --------
 drivers/media/usb/gspca/m5602/m5602_s5k4aa.c    | 199 ++++++++++++++++
 drivers/media/usb/gspca/m5602/m5602_s5k4aa.h    | 197 ---------------
 drivers/media/usb/gspca/m5602/m5602_s5k83a.c    | 124 ++++++++++
 drivers/media/usb/gspca/m5602/m5602_s5k83a.h    | 124 ----------
 drivers/media/usb/usbvision/usbvision-core.c    |   5 -
 33 files changed, 1239 insertions(+), 1262 deletions(-)

-- 
2.7.4



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

end of thread, other threads:[~2016-06-27 12:03 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-24 15:31 [PATCH 00/19] Fix new warnings detected by GCC 6.1 Mauro Carvalho Chehab
2016-06-24 15:31 ` [PATCH 01/19] usbvision: remove some unused vars Mauro Carvalho Chehab
2016-06-24 15:31 ` [PATCH 02/19] exynos4-is: " Mauro Carvalho Chehab
2016-06-24 15:31   ` Mauro Carvalho Chehab
2016-06-24 15:31   ` Mauro Carvalho Chehab
2016-06-24 15:31 ` [PATCH 03/19] cx18: use macros instead of static const vars Mauro Carvalho Chehab
2016-06-24 15:31 ` [PATCH 04/19] m5602_core: move skeletons to the .c file Mauro Carvalho Chehab
2016-06-24 15:31 ` [PATCH 05/19] m5602_s5k4aa: " Mauro Carvalho Chehab
2016-06-24 15:31 ` [PATCH 06/19] m5602_mt9m111: " Mauro Carvalho Chehab
2016-06-24 15:31 ` [PATCH 07/19] m5602_ov9650: " Mauro Carvalho Chehab
2016-06-24 15:31 ` [PATCH 08/19] m5602_s5k83a: " Mauro Carvalho Chehab
2016-06-24 15:31 ` [PATCH 09/19] m5602_po1030: " Mauro Carvalho Chehab
2016-06-24 15:31 ` [PATCH 10/19] m5602_ov7660: " Mauro Carvalho Chehab
2016-06-24 15:31 ` [PATCH 11/19] cx25821-alsa: shutup a Gcc 6.1 warning Mauro Carvalho Chehab
2016-06-24 17:38   ` Luis de Bethencourt
2016-06-24 20:10     ` Mauro Carvalho Chehab
2016-06-24 15:31 ` [PATCH 12/19] drxj: comment out the unused nicam_presc_table_val table Mauro Carvalho Chehab
2016-06-24 15:31 ` [PATCH 13/19] dib0090: comment out the unused tables Mauro Carvalho Chehab
2016-06-26 21:30   ` Patrick Boettcher
2016-06-24 15:31 ` [PATCH 14/19] r820t: comment out two ancillary tables Mauro Carvalho Chehab
2016-06-24 15:31 ` [PATCH 15/19] zr36016: remove some unused tables Mauro Carvalho Chehab
2016-06-24 15:31 ` [PATCH 16/19] vivid: remove some unused vars Mauro Carvalho Chehab
2016-06-24 15:31 ` [PATCH 17/19] em28xx-dvb: remove some left over Mauro Carvalho Chehab
2016-06-24 15:31 ` [PATCH 18/19] adv7842: comment out a table useful for debug Mauro Carvalho Chehab
2016-06-24 15:32 ` [PATCH 19/19] bdisp: move the V/H filter spec to bdisp-hw.c Mauro Carvalho Chehab
2016-06-27 12:03   ` Fabien DESSENNE

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.