lkml.org 
[lkml]   [2021]   [Dec]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH v1 05/10] hwmon: adt7x10: pass hwinfo dev to irq handler
Date
From: Cosmin Tanislav <cosmin.tanislav@analog.com>

The irq handler will need to trigger events on the
hwmon device. Pass it so that we don't store it in
private data.

Signed-off-by: Cosmin Tanislav <cosmin.tanislav@analog.com>
---
drivers/hwmon/adt7x10.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/hwmon/adt7x10.c b/drivers/hwmon/adt7x10.c
index 25c1ab199658..ec7e526b3441 100644
--- a/drivers/hwmon/adt7x10.c
+++ b/drivers/hwmon/adt7x10.c
@@ -102,7 +102,9 @@ static const u8 ADT7X10_REG_TEMP[4] = {

static irqreturn_t adt7x10_irq_handler(int irq, void *private)
{
- struct device *dev = private;
+ struct device *hdev = private;
+ struct adt7x10_data *d = dev_get_drvdata(hdev);
+ struct device *dev = d->bus_dev;
int status;

status = adt7x10_read_byte(dev, ADT7X10_STATUS);
@@ -407,7 +409,7 @@ int adt7x10_probe(struct device *dev, const char *name, int irq,
adt7x10_irq_handler,
IRQF_TRIGGER_FALLING |
IRQF_ONESHOT,
- dev_name(dev), dev);
+ dev_name(dev), hdev);
if (ret)
goto exit_hwmon_device_unregister;
}
--
2.34.1
\
 
 \ /
  Last update: 2021-12-21 13:40    [W:0.061 / U:0.712 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site