Skip to content

Commit

Permalink
drm/panel: ld9040: Remove useless padding
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Thierry Reding committed Jun 5, 2015
1 parent 1a8f905 commit 6343f22
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/gpu/drm/panel/panel-ld9040.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
};
Expand Down

0 comments on commit 6343f22

Please sign in to comment.