linux/drivers/media/common/siano
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
..
Kconfig [media] sms: Remove CONFIG_ prefix from Kconfig symbols 2014-07-22 09:57:28 -03:00
Makefile [media] siano: split debugfs code into a separate file 2013-03-21 07:48:41 -03:00
sms-cards.c [media] siano: remove the remaining CamelCase compliants 2013-03-21 10:03:45 -03:00
sms-cards.h [media] siano: add new devices to the Siano Driver 2013-03-21 07:45:06 -03:00
smscoreapi.c [media] siano: fix sparse warnings 2013-10-17 05:55:46 -03:00
smscoreapi.h [media] media_tree: Fix spelling errors 2013-11-29 14:43:50 -02:00
smsdvb-debugfs.c [media, edac] Change my email address 2014-02-07 08:03:07 -02:00
smsdvb-main.c [media] siano: fix sparse warnings 2013-10-17 05:55:46 -03:00
smsdvb.h [media] media_tree: Fix spelling errors 2013-11-29 14:43:50 -02:00
smsendian.c [media] siano: remove the remaining CamelCase compliants 2013-03-21 10:03:45 -03:00
smsendian.h
smsir.c [media] rc-core: remove protocol arrays 2014-07-25 19:10:43 -03:00
smsir.h [media] siano: remove the ir protocol field 2013-03-22 09:46:46 -03:00