[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1368615236-21345-1-git-send-email-leon@leon.nu>
Date: Wed, 15 May 2013 13:53:56 +0300
From: Leon Romanovsky <leon@...n.nu>
To: sbkim73@...sung.com, sameo@...ux.intel.com
Cc: linux-kernel@...r.kernel.org, Leon Romanovsky <leon@...n.nu>
Subject: [PATCH] drivers: mfd: sec-code: Fix sizeof argument
Signed-off-by: Leon Romanovsky <leon@...n.nu>
---
drivers/mfd/sec-core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mfd/sec-core.c b/drivers/mfd/sec-core.c
index 77ee26ef..5b740a3 100644
--- a/drivers/mfd/sec-core.c
+++ b/drivers/mfd/sec-core.c
@@ -121,7 +121,7 @@ static struct sec_platform_data *sec_pmic_i2c_parse_dt_pdata(
{
struct sec_platform_data *pd;
- pd = devm_kzalloc(dev, sizeof(*pd), GFP_KERNEL);
+ pd = devm_kzalloc(dev, sizeof(struct sec_platform_data), GFP_KERNEL);
if (!pd) {
dev_err(dev, "could not allocate memory for pdata\n");
return ERR_PTR(-ENOMEM);
--
1.8.1.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists