lkml.org 
[lkml]   [2014]   [Feb]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 1/2] driver: regmap: fix coccinelle warnings
    Date
    From: Nenghua Cao <nhcao@marvell.com>

    /drivers/base/regmap/regmap.c:717:6-33: WARNING:
    Comparison to bool.

    More information about semantic patching is available at
    http://coccinelle.lip6.fr/

    Signed-off-by: Nenghua Cao <nhcao@marvell.com>
    ---
    drivers/base/regmap/regmap.c | 2 +-
    1 files changed, 1 insertions(+), 1 deletions(-)

    diff --git a/drivers/base/regmap/regmap.c b/drivers/base/regmap/regmap.c
    index 4b2ed0c..78fc54c 100644
    --- a/drivers/base/regmap/regmap.c
    +++ b/drivers/base/regmap/regmap.c
    @@ -718,7 +718,7 @@ skip_format_initialization:
    new->window_start = range_cfg->window_start;
    new->window_len = range_cfg->window_len;

    - if (_regmap_range_add(map, new) == false) {
    + if (!_regmap_range_add(map, new)) {
    dev_err(map->dev, "Failed to add range %d\n", i);
    kfree(new);
    goto err_range;
    --
    1.7.0.4


    \
     
     \ /
      Last update: 2014-02-21 09:41    [W:5.756 / U:0.004 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site