diff options
Diffstat (limited to 'drivers/video/nexell_display.c')
-rw-r--r-- | drivers/video/nexell_display.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/nexell_display.c b/drivers/video/nexell_display.c index 4101e0962a..d0b8943312 100644 --- a/drivers/video/nexell_display.c +++ b/drivers/video/nexell_display.c @@ -643,9 +643,9 @@ U_BOOT_DRIVER(nexell_display) = { .name = "nexell-display", .id = UCLASS_VIDEO, .of_match = nx_display_ids, - .platdata_auto_alloc_size = + .platdata_auto = sizeof(struct nx_display_platdata), .bind = nx_display_bind, .probe = nx_display_probe, - .priv_auto_alloc_size = sizeof(struct nx_display_dev), + .priv_auto = sizeof(struct nx_display_dev), }; |