diff options
Diffstat (limited to 'drivers/gpu/drm/panel/panel-ld9040.c')
| -rw-r--r-- | drivers/gpu/drm/panel/panel-ld9040.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/drivers/gpu/drm/panel/panel-ld9040.c b/drivers/gpu/drm/panel/panel-ld9040.c index 08cf2c588c3d..9c27bded4c09 100644 --- a/drivers/gpu/drm/panel/panel-ld9040.c +++ b/drivers/gpu/drm/panel/panel-ld9040.c @@ -367,18 +367,18 @@ static int ld9040_remove(struct spi_device *spi)  	return 0;  } -static struct of_device_id ld9040_of_match[] = { +static const struct of_device_id ld9040_of_match[] = {  	{ .compatible = "samsung,ld9040" },  	{ }  };  MODULE_DEVICE_TABLE(of, ld9040_of_match);  static struct spi_driver ld9040_driver = { -	.probe		= ld9040_probe, -	.remove		= ld9040_remove, +	.probe = ld9040_probe, +	.remove = ld9040_remove,  	.driver = { -		.name	= "ld9040", -		.owner	= THIS_MODULE, +		.name = "ld9040", +		.owner = THIS_MODULE,  		.of_match_table = ld9040_of_match,  	},  }; | 
