mirror of https://gitee.com/openkylin/linux.git
OMAPDSS: SDI: use platform_driver_register()
Use platform_driver_register() instead of platform_driver_probe() so that we can support EPROBE_DEFER. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
94cf394b15
commit
d23b3357a3
|
@ -248,7 +248,7 @@ void omapdss_sdi_set_datapairs(struct omap_dss_device *dssdev, int datapairs)
|
|||
}
|
||||
EXPORT_SYMBOL(omapdss_sdi_set_datapairs);
|
||||
|
||||
static int __init sdi_init_display(struct omap_dss_device *dssdev)
|
||||
static int sdi_init_display(struct omap_dss_device *dssdev)
|
||||
{
|
||||
DSSDBG("SDI init\n");
|
||||
|
||||
|
@ -268,7 +268,7 @@ static int __init sdi_init_display(struct omap_dss_device *dssdev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static struct omap_dss_device * __init sdi_find_dssdev(struct platform_device *pdev)
|
||||
static struct omap_dss_device *sdi_find_dssdev(struct platform_device *pdev)
|
||||
{
|
||||
struct omap_dss_board_info *pdata = pdev->dev.platform_data;
|
||||
const char *def_disp_name = omapdss_get_default_display_name();
|
||||
|
@ -296,7 +296,7 @@ static struct omap_dss_device * __init sdi_find_dssdev(struct platform_device *p
|
|||
return def_dssdev;
|
||||
}
|
||||
|
||||
static void __init sdi_probe_pdata(struct platform_device *sdidev)
|
||||
static void sdi_probe_pdata(struct platform_device *sdidev)
|
||||
{
|
||||
struct omap_dss_device *plat_dssdev;
|
||||
struct omap_dss_device *dssdev;
|
||||
|
@ -337,7 +337,7 @@ static void __init sdi_probe_pdata(struct platform_device *sdidev)
|
|||
}
|
||||
}
|
||||
|
||||
static void __init sdi_init_output(struct platform_device *pdev)
|
||||
static void sdi_init_output(struct platform_device *pdev)
|
||||
{
|
||||
struct omap_dss_output *out = &sdi.output;
|
||||
|
||||
|
@ -357,7 +357,7 @@ static void __exit sdi_uninit_output(struct platform_device *pdev)
|
|||
dss_unregister_output(out);
|
||||
}
|
||||
|
||||
static int __init omap_sdi_probe(struct platform_device *pdev)
|
||||
static int omap_sdi_probe(struct platform_device *pdev)
|
||||
{
|
||||
sdi_init_output(pdev);
|
||||
|
||||
|
@ -376,6 +376,7 @@ static int __exit omap_sdi_remove(struct platform_device *pdev)
|
|||
}
|
||||
|
||||
static struct platform_driver omap_sdi_driver = {
|
||||
.probe = omap_sdi_probe,
|
||||
.remove = __exit_p(omap_sdi_remove),
|
||||
.driver = {
|
||||
.name = "omapdss_sdi",
|
||||
|
@ -385,7 +386,7 @@ static struct platform_driver omap_sdi_driver = {
|
|||
|
||||
int __init sdi_init_platform_driver(void)
|
||||
{
|
||||
return platform_driver_probe(&omap_sdi_driver, omap_sdi_probe);
|
||||
return platform_driver_register(&omap_sdi_driver);
|
||||
}
|
||||
|
||||
void __exit sdi_uninit_platform_driver(void)
|
||||
|
|
Loading…
Reference in New Issue