drm/panel: ld9040: Remove useless padding
authorThierry Reding <treding@nvidia.com>
Tue, 14 Apr 2015 13:07:38 +0000 (15:07 +0200)
committerThierry Reding <treding@nvidia.com>
Fri, 5 Jun 2015 11:50:20 +0000 (13:50 +0200)
There's some useless padding in the struct spi_driver definition. Remove
it since it serves no useful purpose.

Signed-off-by: Thierry Reding <treding@nvidia.com>
drivers/gpu/drm/panel/panel-ld9040.c

index 0ab5b69..9c27bde 100644 (file)
@@ -374,11 +374,11 @@ static const struct of_device_id ld9040_of_match[] = {
 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,
        },
 };