From: David Härdeman Date: Thu, 3 Apr 2014 23:32:21 +0000 (-0300) Subject: [media] rc-core: remove protocol arrays X-Git-Tag: omap-for-v3.17/fixes-against-rc2~155^2~119 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5540fbb9de39ceec108a889133664a887c2f55a;p=pandora-kernel.git [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 Signed-off-by: Mauro Carvalho Chehab --- Reading git-diff-tree failed