lkml.org 
[lkml]   [2012]   [Jul]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH] regmap: Fix incorrect arguments to kzalloc() call
    Date
    Signed-off-by: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
    ---
    drivers/base/regmap/regmap-mmio.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/base/regmap/regmap-mmio.c b/drivers/base/regmap/regmap-mmio.c
    index d64a7fc..f05fc74 100644
    --- a/drivers/base/regmap/regmap-mmio.c
    +++ b/drivers/base/regmap/regmap-mmio.c
    @@ -172,7 +172,7 @@ static struct regmap_mmio_context *regmap_mmio_gen_context(void __iomem *regs,
    return ERR_PTR(-EINVAL);
    }

    - ctx = kzalloc(GFP_KERNEL, sizeof(*ctx));
    + ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
    if (!ctx)
    return ERR_PTR(-ENOMEM);

    --
    1.7.11.2


    \
     
     \ /
      Last update: 2012-07-18 16:01    [W:2.759 / U:0.016 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site