lkml.org 
[lkml]   [2015]   [Jun]   [5]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v2 2/2] rtc: fix drivers that consider 0 as a valid IRQ in client->irq
    Date
    Since patch "i2c / ACPI: Use 0 to indicate that device does not have
    interrupt assigned" [1], 0 is not a valid i2c client irq anymore, so
    change all driver's checks accordingly.

    The same issue occurs when the device is instantiated via device tree
    with no IRQ, or from the i2c sysfs interface, even before the patch
    above.

    [1] https://lkml.org/lkml/2015/5/6/279

    Signed-off-by: Octavian Purdila <octavian.purdila@intel.com>
    Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
    Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
    ---
    drivers/rtc/rtc-ds1374.c | 4 ++--
    drivers/rtc/rtc-ds3232.c | 2 +-
    2 files changed, 3 insertions(+), 3 deletions(-)

    diff --git a/drivers/rtc/rtc-ds1374.c b/drivers/rtc/rtc-ds1374.c
    index 167783f..592458c 100644
    --- a/drivers/rtc/rtc-ds1374.c
    +++ b/drivers/rtc/rtc-ds1374.c
    @@ -689,7 +689,7 @@ static int ds1374_suspend(struct device *dev)
    {
    struct i2c_client *client = to_i2c_client(dev);

    - if (client->irq >= 0 && device_may_wakeup(&client->dev))
    + if (client->irq > 0 && device_may_wakeup(&client->dev))
    enable_irq_wake(client->irq);
    return 0;
    }
    @@ -698,7 +698,7 @@ static int ds1374_resume(struct device *dev)
    {
    struct i2c_client *client = to_i2c_client(dev);

    - if (client->irq >= 0 && device_may_wakeup(&client->dev))
    + if (client->irq > 0 && device_may_wakeup(&client->dev))
    disable_irq_wake(client->irq);
    return 0;
    }
    diff --git a/drivers/rtc/rtc-ds3232.c b/drivers/rtc/rtc-ds3232.c
    index 7e48e53..f280dd1 100644
    --- a/drivers/rtc/rtc-ds3232.c
    +++ b/drivers/rtc/rtc-ds3232.c
    @@ -443,7 +443,7 @@ static int ds3232_remove(struct i2c_client *client)
    {
    struct ds3232 *ds3232 = i2c_get_clientdata(client);

    - if (client->irq >= 0) {
    + if (client->irq > 0) {
    mutex_lock(&ds3232->mutex);
    ds3232->exiting = 1;
    mutex_unlock(&ds3232->mutex);
    --
    1.9.1


    \
     
     \ /
      Last update: 2015-06-05 15:01    [W:4.151 / U:0.216 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site