]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
video: imx: ipuv3: remove undefined function declarations
authorBrian Ruley <brian.ruley@gehealthcare.com>
Mon, 29 Dec 2025 10:48:01 +0000 (12:48 +0200)
committerFabio Estevam <festevam@gmail.com>
Mon, 29 Dec 2025 13:17:01 +0000 (10:17 -0300)
These functions don't seem to be defined nor called anywhere so remove
them.

Signed-off-by: Brian Ruley <brian.ruley@gehealthcare.com>
drivers/video/imx/ipu.h
drivers/video/imx/ipu_common.c

index 4c13c9342f71289db81234ae6e53bd80a483326b..93bc97e630064b0f714198fd7a88883e0579300a 100644 (file)
@@ -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);
index bd1ef0a800dc957b987f70c9641152021f1320e1..61a3fe1e83bc8e8a84ba858dd8b754d666fc0c27 100644 (file)
@@ -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;