* [PATCH] video: edid.c: fix "no previous prototype" warning
@ 2017-03-24 3:40 Antony Pavlov
2017-03-24 6:44 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Antony Pavlov @ 2017-03-24 3:40 UTC (permalink / raw)
To: barebox
The patch fixes this compiler's warning:
drivers/video/edid.c:390:5: warning: no previous prototype
for 'fb_get_mode' [-Wmissing-prototypes]
int fb_get_mode(int flags, u32 val, struct fb_videomode *var)
^
Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
---
drivers/video/edid.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/video/edid.c b/drivers/video/edid.c
index 258526433..bee459411 100644
--- a/drivers/video/edid.c
+++ b/drivers/video/edid.c
@@ -387,7 +387,7 @@ static void fb_timings_vfreq(struct __fb_timings *timings)
* REQUIRES:
* A valid info->monspecs, otherwise 'safe numbers' will be used.
*/
-int fb_get_mode(int flags, u32 val, struct fb_videomode *var)
+static int fb_get_mode(int flags, u32 val, struct fb_videomode *var)
{
struct __fb_timings *timings;
u32 interlace = 1, dscan = 1;
--
2.11.0
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] video: edid.c: fix "no previous prototype" warning
2017-03-24 3:40 [PATCH] video: edid.c: fix "no previous prototype" warning Antony Pavlov
@ 2017-03-24 6:44 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2017-03-24 6:44 UTC (permalink / raw)
To: Antony Pavlov; +Cc: barebox
On Fri, Mar 24, 2017 at 06:40:06AM +0300, Antony Pavlov wrote:
> The patch fixes this compiler's warning:
>
> drivers/video/edid.c:390:5: warning: no previous prototype
> for 'fb_get_mode' [-Wmissing-prototypes]
> int fb_get_mode(int flags, u32 val, struct fb_videomode *var)
> ^
>
> Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
> ---
> drivers/video/edid.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Applied, thanks
Sascha
>
> diff --git a/drivers/video/edid.c b/drivers/video/edid.c
> index 258526433..bee459411 100644
> --- a/drivers/video/edid.c
> +++ b/drivers/video/edid.c
> @@ -387,7 +387,7 @@ static void fb_timings_vfreq(struct __fb_timings *timings)
> * REQUIRES:
> * A valid info->monspecs, otherwise 'safe numbers' will be used.
> */
> -int fb_get_mode(int flags, u32 val, struct fb_videomode *var)
> +static int fb_get_mode(int flags, u32 val, struct fb_videomode *var)
> {
> struct __fb_timings *timings;
> u32 interlace = 1, dscan = 1;
> --
> 2.11.0
>
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-03-24 6:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-24 3:40 [PATCH] video: edid.c: fix "no previous prototype" warning Antony Pavlov
2017-03-24 6:44 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox