Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f9905441 authored by Axel Lin's avatar Axel Lin Committed by Tomi Valkeinen
Browse files

video: omap: Staticise non-exported symbols



These symbols are not used outside it's driver so no need to
make the symbol global.

Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 6ac48d1e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -198,7 +198,7 @@ static int ams_delta_panel_resume(struct platform_device *pdev)
	return 0;
}

struct platform_driver ams_delta_panel_driver = {
static struct platform_driver ams_delta_panel_driver = {
	.probe		= ams_delta_panel_probe,
	.remove		= ams_delta_panel_remove,
	.suspend	= ams_delta_panel_suspend,
+1 −1
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ static int h3_panel_resume(struct platform_device *pdev)
	return 0;
}

struct platform_driver h3_panel_driver = {
static struct platform_driver h3_panel_driver = {
	.probe		= h3_panel_probe,
	.remove		= h3_panel_remove,
	.suspend	= h3_panel_suspend,
+1 −1
Original line number Diff line number Diff line
@@ -104,7 +104,7 @@ static int htcherald_panel_resume(struct platform_device *pdev)
	return 0;
}

struct platform_driver htcherald_panel_driver = {
static struct platform_driver htcherald_panel_driver = {
	.probe		= htcherald_panel_probe,
	.remove		= htcherald_panel_remove,
	.suspend	= htcherald_panel_suspend,
+1 −1
Original line number Diff line number Diff line
@@ -98,7 +98,7 @@ static int innovator1510_panel_resume(struct platform_device *pdev)
	return 0;
}

struct platform_driver innovator1510_panel_driver = {
static struct platform_driver innovator1510_panel_driver = {
	.probe		= innovator1510_panel_probe,
	.remove		= innovator1510_panel_remove,
	.suspend	= innovator1510_panel_suspend,
+1 −1
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ static int innovator1610_panel_resume(struct platform_device *pdev)
	return 0;
}

struct platform_driver innovator1610_panel_driver = {
static struct platform_driver innovator1610_panel_driver = {
	.probe		= innovator1610_panel_probe,
	.remove		= innovator1610_panel_remove,
	.suspend	= innovator1610_panel_suspend,
Loading