From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anatolij Gustschin Date: Sun, 31 Jan 2016 20:21:50 +0100 Subject: [U-Boot] [PATCH v2 17/23] tegra: video: Convert tegra20 LCD driver to driver model In-Reply-To: <1454197082-1312-18-git-send-email-sjg@chromium.org> References: <1454197082-1312-1-git-send-email-sjg@chromium.org> <1454197082-1312-18-git-send-email-sjg@chromium.org> Message-ID: <20160131202150.0463789e@crub> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Sat, 30 Jan 2016 16:37:56 -0700 Simon Glass sjg at chromium.org wrote: > Move this driver over to use driver model. This involves rearranging the > code somewhat. The effect is that everything is run from the probe() method. > > Boards which use this are fixed up, but only seaboard is tested. > > Signed-off-by: Simon Glass > --- > > Changes in v2: > - Fix a checkpatch warning > > arch/arm/dts/tegra20-seaboard.dts | 4 + > arch/arm/dts/tegra20.dtsi | 2 + > arch/arm/include/asm/arch-tegra20/display.h | 26 -- > board/compal/paz00/paz00.c | 2 +- > configs/colibri_t20_defconfig | 4 + > configs/harmony_defconfig | 6 +- > configs/medcom-wide_defconfig | 4 + > configs/paz00_defconfig | 4 + > configs/seaboard_defconfig | 4 + > configs/tec_defconfig | 4 + > configs/ventana_defconfig | 4 + > drivers/video/tegra.c | 385 +++++++++++++--------------- > include/configs/colibri_t20.h | 2 - > include/configs/harmony.h | 2 - > include/configs/medcom-wide.h | 2 - > include/configs/paz00.h | 2 - > include/configs/seaboard.h | 2 - > include/configs/tec.h | 2 - > include/configs/ventana.h | 2 - > 19 files changed, 208 insertions(+), 255 deletions(-) Acked-by: Anatolij Gustschin