aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/sm7xx
diff options
context:
space:
mode:
authoranish kumar <anish198519851985@gmail.com>2011-05-19 20:58:51 +0530
committerGreg Kroah-Hartman <gregkh@suse.de>2011-05-19 15:34:32 -0700
commit617a0c7177195a5cef6f0c2e559ee05b5d4191dd (patch)
treed3aadef8133ad078da5a770b9f13bc81bf5ee643 /drivers/staging/sm7xx
parent1639c8ab4857f18f59222141777c8db931071785 (diff)
downloadkernel_samsung_smdk4412-617a0c7177195a5cef6f0c2e559ee05b5d4191dd.zip
kernel_samsung_smdk4412-617a0c7177195a5cef6f0c2e559ee05b5d4191dd.tar.gz
kernel_samsung_smdk4412-617a0c7177195a5cef6f0c2e559ee05b5d4191dd.tar.bz2
Staging: sm7xx: preferred form for passing a size to memory allocation routines
The preferred form for passing a size of a struct is the following: p = kmalloc(sizeof(*p), ...); Please refer Documentation/Codingstyle chapter 14 Signed-off-by: anish kumar <anish198519851985@gmail.com> Acked-by: Harry Wei <harryxiyou@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/sm7xx')
-rw-r--r--drivers/staging/sm7xx/smtcfb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/sm7xx/smtcfb.c b/drivers/staging/sm7xx/smtcfb.c
index 1aca0cb..c41d2f7 100644
--- a/drivers/staging/sm7xx/smtcfb.c
+++ b/drivers/staging/sm7xx/smtcfb.c
@@ -714,7 +714,7 @@ static struct smtcfb_info *smtc_alloc_fb_info(struct pci_dev *dev,
{
struct smtcfb_info *sfb;
- sfb = kzalloc(sizeof(struct smtcfb_info), GFP_KERNEL);
+ sfb = kzalloc(sizeof(*sfb), GFP_KERNEL);
if (!sfb)
return NULL;