diff options
| author | Sanjay Chitroda <sanjayembeddedse@gmail.com> | 2026-06-16 18:55:21 +0530 |
|---|---|---|
| committer | Jonathan Cameron <jic23@kernel.org> | 2026-06-30 00:15:55 +0100 |
| commit | dc0cbeb497b00ef1c1fc307fd7d9250893dc3f43 (patch) | |
| tree | d0c8241887456ebf4ecf7aad5dd9fa3873899bba | |
| parent | 46d67896786c8a07e5ad6a9d6ace6cdd312ef158 (diff) | |
| download | linux-stable-dc0cbeb497b00ef1c1fc307fd7d9250893dc3f43.tar.gz linux-stable-dc0cbeb497b00ef1c1fc307fd7d9250893dc3f43.zip | |
iio: hid-sensor-humidity: use u32 instead of unsigned int
Prefer 'u32' instead of 'unsigned int' for usage_id variable.
This matches expected callback API type and improves code clarity.
No functional change.
Signed-off-by: Sanjay Chitroda <sanjayembeddedse@gmail.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
| -rw-r--r-- | drivers/iio/humidity/hid-sensor-humidity.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/iio/humidity/hid-sensor-humidity.c b/drivers/iio/humidity/hid-sensor-humidity.c index be2338d5f407..c376a247b137 100644 --- a/drivers/iio/humidity/hid-sensor-humidity.c +++ b/drivers/iio/humidity/hid-sensor-humidity.c @@ -127,7 +127,7 @@ static const struct iio_info humidity_info = { /* Callback handler to send event after all samples are received and captured */ static int humidity_proc_event(struct hid_sensor_hub_device *hsdev, - unsigned int usage_id, void *pdev) + u32 usage_id, void *pdev) { struct iio_dev *indio_dev = platform_get_drvdata(pdev); struct hid_humidity_state *humid_st = iio_priv(indio_dev); @@ -141,7 +141,7 @@ static int humidity_proc_event(struct hid_sensor_hub_device *hsdev, /* Capture samples in local storage */ static int humidity_capture_sample(struct hid_sensor_hub_device *hsdev, - unsigned int usage_id, size_t raw_len, + u32 usage_id, size_t raw_len, char *raw_data, void *pdev) { struct iio_dev *indio_dev = platform_get_drvdata(pdev); @@ -161,7 +161,7 @@ static int humidity_capture_sample(struct hid_sensor_hub_device *hsdev, static int humidity_parse_report(struct platform_device *pdev, struct hid_sensor_hub_device *hsdev, struct iio_chan_spec *channels, - unsigned int usage_id, + u32 usage_id, struct hid_humidity_state *st) { int ret; |
