diff mbox series

[U-Boot] include/video.h: Remove declaration of functions that don't exist.

Message ID 20180917164503.27610-1-Liviu.Dudau@foss.arm.com
State Accepted
Commit cc0dae08c69a0a2a1772d8358e20020d2829910a
Delegated to: Anatolij Gustschin
Headers show
Series [U-Boot] include/video.h: Remove declaration of functions that don't exist. | expand

Commit Message

Liviu Dudau Sept. 17, 2018, 4:45 p.m. UTC
video_init, video_putc and video_puts functions are not implemented
anywhere, remove their declaration from the header.

Signed-off-by: Liviu Dudau <liviu.dudau@foss.arm.com>
---
 include/video.h | 6 ------
 1 file changed, 6 deletions(-)

Comments

Simon Glass Sept. 18, 2018, 2:05 a.m. UTC | #1
On 17 September 2018 at 10:45, Liviu Dudau <Liviu.Dudau@foss.arm.com> wrote:
> video_init, video_putc and video_puts functions are not implemented
> anywhere, remove their declaration from the header.
>
> Signed-off-by: Liviu Dudau <liviu.dudau@foss.arm.com>
> ---
>  include/video.h | 6 ------
>  1 file changed, 6 deletions(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
Heiko Schocher Sept. 18, 2018, 4:14 a.m. UTC | #2
Hello Liviu,

Am 17.09.2018 um 18:45 schrieb Liviu Dudau:
> video_init, video_putc and video_puts functions are not implemented
> anywhere, remove their declaration from the header.
> 
> Signed-off-by: Liviu Dudau <liviu.dudau@foss.arm.com>
> ---
>   include/video.h | 6 ------
>   1 file changed, 6 deletions(-)

Reviewed-by: Heiko Schocher <hs@denx.de>

bye,
Heiko
Anatolij Gustschin Sept. 27, 2018, 8:36 a.m. UTC | #3
On Mon, 17 Sep 2018 17:45:03 +0100
Liviu Dudau Liviu.Dudau@foss.arm.com wrote:

> video_init, video_putc and video_puts functions are not implemented
> anywhere, remove their declaration from the header.
> 
> Signed-off-by: Liviu Dudau <liviu.dudau@foss.arm.com>
> ---
>  include/video.h | 6 ------
>  1 file changed, 6 deletions(-)

Applied to u-boot-video/master, thanks!

--
Anatolij
diff mbox series

Patch

diff --git a/include/video.h b/include/video.h
index ddc2eeb5a9..e7fc5c94e2 100644
--- a/include/video.h
+++ b/include/video.h
@@ -198,12 +198,6 @@  void video_set_default_colors(struct video_priv *priv);
 
 /* Video functions */
 
-struct stdio_dev;
-
-int	video_init(void *videobase);
-void	video_putc(struct stdio_dev *dev, const char c);
-void	video_puts(struct stdio_dev *dev, const char *s);
-
 /**
  * Display a BMP format bitmap on the screen
  *