video: fbdev: of: display_timing: Remove a redundant zeroing of memory
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Tue, 22 Mar 2022 20:33:38 +0000 (21:33 +0100)
committerHelge Deller <deller@gmx.de>
Mon, 4 Apr 2022 06:55:23 +0000 (08:55 +0200)
of_parse_display_timing() already call memset(0) on its 2nd argument, so
there is no need to clear it explicitly before calling this function.

Use kmalloc() instead of kzalloc() to save a few cycles.

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Helge Deller <deller@gmx.de>
drivers/video/of_display_timing.c

index f93b6ab..bebd371 100644 (file)
@@ -199,7 +199,7 @@ struct display_timings *of_get_display_timings(const struct device_node *np)
                struct display_timing *dt;
                int r;
 
-               dt = kzalloc(sizeof(*dt), GFP_KERNEL);
+               dt = kmalloc(sizeof(*dt), GFP_KERNEL);
                if (!dt) {
                        pr_err("%pOF: could not allocate display_timing struct\n",
                                np);