diff options
author | Randy Dunlap <[email protected]> | 2023-01-12 22:36:39 -0800 |
---|---|---|
committer | Helge Deller <[email protected]> | 2023-01-16 09:37:31 +0100 |
commit | 67a90bccad3d20829bea35cb38ad744d9b6e30f4 (patch) | |
tree | 80810accbacda17773576ffa346cc882afaead9c | |
parent | ee4202db16e59e792f570092ad1f440f2d31ea03 (diff) |
fbdev: fbmon: fix function name in kernel-doc
Fix a kernel-doc warning by correcting the function name in the
kernel-doc comment:
drivers/video/fbdev/core/fbmon.c:1073: warning: expecting prototype for fb_get_hblank_by_freq(). Prototype was for fb_get_hblank_by_hfreq() instead
Signed-off-by: Randy Dunlap <[email protected]>
Cc: Daniel Vetter <[email protected]>
Cc: Helge Deller <[email protected]>
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Helge Deller <[email protected]>
-rw-r--r-- | drivers/video/fbdev/core/fbmon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/core/fbmon.c b/drivers/video/fbdev/core/fbmon.c index b0e690f41025..79e5bfbdd34c 100644 --- a/drivers/video/fbdev/core/fbmon.c +++ b/drivers/video/fbdev/core/fbmon.c @@ -1050,7 +1050,7 @@ static u32 fb_get_vblank(u32 hfreq) } /** - * fb_get_hblank_by_freq - get horizontal blank time given hfreq + * fb_get_hblank_by_hfreq - get horizontal blank time given hfreq * @hfreq: horizontal freq * @xres: horizontal resolution in pixels * |