From: Brian Ruley Date: Mon, 29 Dec 2025 10:48:01 +0000 (+0200) Subject: video: imx: ipuv3: remove undefined function declarations X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dff2ca4131a6e2959880100f4422c47e8f2bccca;p=thirdparty%2Fu-boot.git video: imx: ipuv3: remove undefined function declarations These functions don't seem to be defined nor called anywhere so remove them. Signed-off-by: Brian Ruley --- diff --git a/drivers/video/imx/ipu.h b/drivers/video/imx/ipu.h index 4c13c9342f7..93bc97e6300 100644 --- a/drivers/video/imx/ipu.h +++ b/drivers/video/imx/ipu.h @@ -215,10 +215,6 @@ int32_t ipu_init_channel_buffer(ipu_channel_t channel, ipu_buffer_t type, dma_addr_t phyaddr_0, dma_addr_t phyaddr_1, uint32_t u_offset, uint32_t v_offset); -int32_t ipu_update_channel_buffer(ipu_channel_t channel, ipu_buffer_t type, - uint32_t bufNum, dma_addr_t phyaddr); - -int32_t ipu_is_channel_busy(ipu_channel_t channel); void ipu_clear_buffer_ready(ipu_channel_t channel, ipu_buffer_t type, uint32_t bufNum); int32_t ipu_enable_channel(ipu_channel_t channel); diff --git a/drivers/video/imx/ipu_common.c b/drivers/video/imx/ipu_common.c index bd1ef0a800d..61a3fe1e83b 100644 --- a/drivers/video/imx/ipu_common.c +++ b/drivers/video/imx/ipu_common.c @@ -1249,14 +1249,6 @@ ipu_color_space_t format_to_colorspace(uint32_t fmt) return RGB; } -/* should be removed when clk framework is availiable */ -int ipu_set_ldb_clock(int rate) -{ - ldb_clk.rate = rate; - - return 0; -} - bool ipu_clk_enabled(void) { return g_ipu_clk_enabled;