lkml.org 
[lkml]   [2020]   [Sep]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 15/18] counter: use semicolons rather than commas to separate statements
    Date
    Replace commas with semicolons.  What is done is essentially described by
    the following Coccinelle semantic patch (http://coccinelle.lip6.fr/):

    // <smpl>
    @@ expression e1,e2; @@
    e1
    -,
    +;
    e2
    ... when any
    // </smpl>

    Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>

    ---
    drivers/counter/ti-eqep.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/counter/ti-eqep.c b/drivers/counter/ti-eqep.c
    index 1ff07faef27f..e27771df8e23 100644
    --- a/drivers/counter/ti-eqep.c
    +++ b/drivers/counter/ti-eqep.c
    @@ -439,7 +439,7 @@ static int ti_eqep_remove(struct platform_device *pdev)
    struct device *dev = &pdev->dev;

    counter_unregister(&priv->counter);
    - pm_runtime_put_sync(dev),
    + pm_runtime_put_sync(dev);
    pm_runtime_disable(dev);

    return 0;
    \
     
     \ /
      Last update: 2020-09-27 21:57    [W:4.101 / U:0.240 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site