mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 18:13:41 +02:00
media: vpif_display: fix section mismatch
Platform drivers can be probed after their init sections have been discarded (e.g. on probe deferral or manual rebind through sysfs) so the probe function must not live in init. Note that commitffa1b391c6("V4L/DVB: vpif_cap/disp: Removed section mismatch warning") incorrectly suppressed the modpost warning. Fixes:ffa1b391c6("V4L/DVB: vpif_cap/disp: Removed section mismatch warning") Fixes:e7332e3a55("V4L/DVB (12176): davinci/vpif_display: Add VPIF display driver") Cc: stable@vger.kernel.org # 2.6.32 Signed-off-by: Johan Hovold <johan@kernel.org> Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>
This commit is contained in:
parent
0ef8411137
commit
59ca64bf98
|
|
@ -1214,7 +1214,7 @@ static int vpif_probe_complete(void)
|
|||
* vpif_probe: This function creates device entries by register itself to the
|
||||
* V4L2 driver and initializes fields of each channel objects
|
||||
*/
|
||||
static __init int vpif_probe(struct platform_device *pdev)
|
||||
static int vpif_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct vpif_subdev_info *subdevdata;
|
||||
struct i2c_adapter *i2c_adap;
|
||||
|
|
@ -1390,7 +1390,7 @@ static int vpif_resume(struct device *dev)
|
|||
|
||||
static SIMPLE_DEV_PM_OPS(vpif_pm_ops, vpif_suspend, vpif_resume);
|
||||
|
||||
static __refdata struct platform_driver vpif_driver = {
|
||||
static struct platform_driver vpif_driver = {
|
||||
.driver = {
|
||||
.name = VPIF_DRIVER_NAME,
|
||||
.pm = &vpif_pm_ops,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user