]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Replace video_uc_platdata with video_uc_plat
authorDario Binacchi <dariobin@libero.it>
Sat, 23 Jan 2021 18:43:52 +0000 (19:43 +0100)
committerAnatolij Gustschin <agust@denx.de>
Fri, 19 Feb 2021 21:45:47 +0000 (22:45 +0100)
The video_uc_platdata structure no longer exists. It has been renamed
video_uc_plat.

Signed-off-by: Dario Binacchi <dariobin@libero.it>
drivers/video/Kconfig
drivers/video/nexell_display.c

index d782eb806a157ecee5c1325dae9208c01b6ac975..bdacf67795464a2c2dde818eb32a2e80960c9a27 100644 (file)
@@ -30,7 +30,7 @@ config VIDEO_PCI_DEFAULT_FB_SIZE
        help
          Generally, video drivers request the amount of memory they need for
          the frame buffer when they are bound, by setting the size field in
-         struct video_uc_platdata. That memory is then reserved for use after
+         struct video_uc_plat. That memory is then reserved for use after
          relocation. But PCI drivers cannot be bound before relocation unless
          they are mentioned in the devicetree.
 
@@ -51,7 +51,7 @@ config VIDEO_COPY
          U-Boot) and then copied to the hardware frame-buffer as needed.
 
          To use this, your video driver must set @copy_base in
-         struct video_uc_platdata.
+         struct video_uc_plat.
 
 config BACKLIGHT_PWM
        bool "Generic PWM based Backlight Driver"
index b47bef3578f7d5dbe0d586d31209d985b4fc5636..c7621ef49c5149973ac9286314cc938a88af43aa 100644 (file)
@@ -15,7 +15,7 @@
 #include <malloc.h>
 #include <linux/compat.h>
 #include <linux/err.h>
-#include <video.h>             /* For struct video_uc_platdata */
+#include <video.h>             /* For struct video_uc_plat */
 #include <video_fb.h>
 #include <lcd.h>
 #include <asm/global_data.h>