diff options
author | Simon Glass <sjg@chromium.org> | 2022-01-23 07:04:05 -0700 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2022-03-28 20:16:30 +0200 |
commit | 9b39da6e42815ebda9505138017f7396625a1c6e (patch) | |
tree | 8e4672bc42280ffb14c3c8b563b4cf2eaaa6797e /arch | |
parent | d77c6fbd3f3f12622f0c8aa9c669dfbf77e4a420 (diff) | |
download | u-boot-9b39da6e42815ebda9505138017f7396625a1c6e.zip u-boot-9b39da6e42815ebda9505138017f7396625a1c6e.tar.gz u-boot-9b39da6e42815ebda9505138017f7396625a1c6e.tar.bz2 |
video: nexell: Drop unused and invalid code
Unfortunately this driver uses the old video structure to store things.
This is not supported with driver model.
Drop the old code and comment out the other pieces, so the maintainer can
take a look.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-nexell/include/mach/display_dev.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-nexell/include/mach/display_dev.h b/arch/arm/mach-nexell/include/mach/display_dev.h index 77eb614..0dd96f6 100644 --- a/arch/arm/mach-nexell/include/mach/display_dev.h +++ b/arch/arm/mach-nexell/include/mach/display_dev.h @@ -15,8 +15,8 @@ #endif struct nx_display_dev { -#if defined CONFIG_VIDEO || defined CONFIG_DM_VIDEO - GraphicDevice graphic_device; +#if defined CONFIG_DM_VIDEO + /* GraphicDevice graphic_device; -- not defined anymore */ #elif defined CONFIG_LCD vidinfo_t *panel_info; #endif |