diff options
author | Dario Binacchi <dario.binacchi@amarulasolutions.com> | 2023-11-11 11:41:59 +0100 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2024-01-11 17:09:01 +0100 |
commit | d6dfcdaa4e6e1a7fa99dc068f47f6b7b8c5bb634 (patch) | |
tree | f0840a49afcef91f6e11819920bdcb24d38adec2 /drivers/video/fbdev/imxfb.c | |
parent | cb892e5dfed3044974c4f10addbc297966224fe8 (diff) |
fbdev: imxfb: add '*/' on a separate line in block comment
Linux kernel coding style uses '*/' on a separate line at the end of
multi line comments.
Fix block comments by moving '*/' at the end of block comments on a
separate line as reported by checkpatch:
WARNING: Block comments use a trailing */ on a separate line
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'drivers/video/fbdev/imxfb.c')
-rw-r--r-- | drivers/video/fbdev/imxfb.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/video/fbdev/imxfb.c b/drivers/video/fbdev/imxfb.c index 8d6943f0bfca..a4dbc72f93c3 100644 --- a/drivers/video/fbdev/imxfb.c +++ b/drivers/video/fbdev/imxfb.c @@ -946,8 +946,10 @@ static int imxfb_probe(struct platform_device *pdev) if (ret) goto failed_init; - /* Calculate maximum bytes used per pixel. In most cases this should - * be the same as m->bpp/8 */ + /* + * Calculate maximum bytes used per pixel. In most cases this should + * be the same as m->bpp/8 + */ m = &fbi->mode[0]; bytes_per_pixel = (m->bpp + 7) / 8; for (i = 0; i < fbi->num_modes; i++, m++) |