diff options
author | Dinesh Ram <Dinesh.Ram@cern.ch> | 2013-10-15 12:24:44 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2013-12-18 06:40:07 -0200 |
commit | cc6d618fdf56df389e46be2f0c9f2d1579d8b9e6 (patch) | |
tree | e8ed42a9ec355329c19133c8847a8b276c2a3708 /include/media | |
parent | 99995dedea0e956ff58692fd795b8a8a0669e3a5 (diff) | |
download | blackbird-op-linux-cc6d618fdf56df389e46be2f0c9f2d1579d8b9e6.tar.gz blackbird-op-linux-cc6d618fdf56df389e46be2f0c9f2d1579d8b9e6.zip |
[media] si4713: move supply list to si4713_platform_data
The supply list is needed by the platform driver, but not by the usb driver.
So this information belongs to the platform data and should not be hardcoded
in the subdevice driver.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Tested-by: Eduardo Valentin <edubezval@gmail.com>
Acked-by: Eduardo Valentin <edubezval@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/si4713.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/media/si4713.h b/include/media/si4713.h index ed7353e8a982..f98a0a7af61c 100644 --- a/include/media/si4713.h +++ b/include/media/si4713.h @@ -23,6 +23,8 @@ * Platform dependent definition */ struct si4713_platform_data { + const char * const *supply_names; + unsigned supplies; int gpio_reset; /* < 0 if not used */ }; |