]> asedeno.scripts.mit.edu Git - linux.git/commit
clk: bcm/kona: Do not use sizeof on pointer type
authorVaishali Thakkar <vaishali.thakkar@oracle.com>
Thu, 28 Apr 2016 13:50:33 +0000 (19:20 +0530)
committerStephen Boyd <sboyd@codeaurora.org>
Fri, 6 May 2016 18:06:44 +0000 (11:06 -0700)
commit4087a5f2e5e75a6d0231d1318bada1a12972a5fd
treeee8d094705483e5fcd5b1af27ca4f7f847a696b3
parent2a0974aa1a0b40a92387ea03dbfeacfbc9ba182c
clk: bcm/kona: Do not use sizeof on pointer type

When sizeof is applied to a pointer typed expression, it gives
the size of the pointer. So, here do not use sizeof on pointer
type. Also, silent checkpatch.pl by using kmalloc_array over
kmalloc.

Note that this has no effect on runtime because 'parent_names'
is a pointer to a pointer.

Problem found using Coccinelle.

Signed-off-by: Vaishali Thakkar <vaishali.thakkar@oracle.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/bcm/clk-kona-setup.c