lkml.org 
[lkml]   [2016]   [Sep]   [26]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Subject[PATCH 5/5] ISDN-Gigaset: Enclose two expressions for the sizeof operator by parentheses
    From
    Date
    From: Markus Elfring <elfring@users.sourceforge.net>
    Date: Mon, 26 Sep 2016 17:03:56 +0200
    MIME-Version: 1.0
    Content-Type: text/plain; charset=UTF-8
    Content-Transfer-Encoding: 8bit

    The script "checkpatch.pl" can point information out like the following.

    WARNING: sizeof … should be sizeof(…)

    Thus fix the affected source code places.

    Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
    ---
    drivers/isdn/gigaset/common.c | 4 ++--
    1 file changed, 2 insertions(+), 2 deletions(-)

    diff --git a/drivers/isdn/gigaset/common.c b/drivers/isdn/gigaset/common.c
    index 2e9382f..d901ed7 100644
    --- a/drivers/isdn/gigaset/common.c
    +++ b/drivers/isdn/gigaset/common.c
    @@ -53,7 +53,7 @@ void gigaset_dbg_buffer(enum debuglevel level, const unsigned char *msg,
    {
    unsigned char outbuf[80];
    unsigned char c;
    - size_t space = sizeof outbuf - 1;
    + size_t space = sizeof(outbuf - 1);
    unsigned char *out = outbuf;
    size_t numin = len;

    @@ -1079,7 +1079,7 @@ struct gigaset_driver *gigaset_initdriver(unsigned minor, unsigned minors,
    unsigned long flags;
    unsigned i;

    - drv = kmalloc(sizeof *drv, GFP_KERNEL);
    + drv = kmalloc(sizeof(*drv), GFP_KERNEL);
    if (!drv)
    return NULL;

    --
    2.10.0
    \
     
     \ /
      Last update: 2016-09-26 17:46    [W:5.796 / U:1.580 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site