linux/drivers/media
David Härdeman c5540fbb9d [media] rc-core: remove protocol arrays
The basic API of rc-core used to be:

	dev = rc_allocate_device();
	dev->x = a;
	dev->y = b;
	dev->z = c;
	rc_register_device();

which is a pretty common pattern in the kernel, after the introduction of
protocol arrays the API looks something like:

	dev = rc_allocate_device();
	dev->x = a;
	rc_set_allowed_protocols(dev, RC_BIT_X);
	dev->z = c;
	rc_register_device();

There's no real need for the protocols to be an array, so change it
back to be consistent (and in preparation for the following patches).

[m.chehab@samsung.com: added missing changes at some files]
Signed-off-by: David Härdeman <david@hardeman.nu>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
2014-07-25 19:10:43 -03:00
..
common [media] rc-core: remove protocol arrays 2014-07-25 19:10:43 -03:00
dvb-core [media] cxusb: TechnoTrend CT2-4400 USB DVB-T2/C tuner support 2014-07-14 21:07:07 -03:00
dvb-frontends [media] dib7000m: Remove unnecessary null test 2014-07-22 21:42:23 -03:00
firewire
i2c [media] rc-core: remove protocol arrays 2014-07-25 19:10:43 -03:00
mmc
parport [media] v4l: Support extending the v4l2_pix_format structure 2014-07-17 12:44:47 -03:00
pci [media] rc-core: remove protocol arrays 2014-07-25 19:10:43 -03:00
platform [media] coda: store IRAM size in struct coda_devtype 2014-07-22 12:16:58 -03:00
radio [media] Fix 64-bit division fall-out from 64-bit control ranges 2014-07-17 12:44:38 -03:00
rc [media] rc-core: remove protocol arrays 2014-07-25 19:10:43 -03:00
tuners [media] xc4000: Fix get_frequency() 2014-07-22 21:44:42 -03:00
usb [media] rc-core: remove protocol arrays 2014-07-25 19:10:43 -03:00
v4l2-core [media] v4l2-mem2mem: export v4l2_m2m_try_schedule 2014-07-22 12:06:50 -03:00
Kconfig [media] Kconfig: sub-driver auto-select SPI bus 2014-07-21 20:34:12 -03:00
Makefile
media-device.c [media] media-device: Remove duplicated memset() in media_enum_entities() 2014-07-22 01:02:52 -03:00
media-devnode.c
media-entity.c