mirror of
https://github.com/torvalds/linux.git
synced 2026-05-29 17:43:52 +02:00
iio: position: hid-sensor-custom-intel-hinge: Get platform data via dev_get_platdata()
Access to platform data via dev_get_platdata() getter to make code cleaner. Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com> Link: https://patch.msgid.link/20240902222824.1145571-22-andy.shevchenko@gmail.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
a6cf377ad2
commit
cc10cbd64b
|
|
@ -263,9 +263,9 @@ static int hinge_parse_report(struct platform_device *pdev,
|
|||
/* Function to initialize the processing for usage id */
|
||||
static int hid_hinge_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct hid_sensor_hub_device *hsdev = dev_get_platdata(&pdev->dev);
|
||||
struct hinge_state *st;
|
||||
struct iio_dev *indio_dev;
|
||||
struct hid_sensor_hub_device *hsdev = pdev->dev.platform_data;
|
||||
int ret;
|
||||
int i;
|
||||
|
||||
|
|
@ -344,7 +344,7 @@ static int hid_hinge_probe(struct platform_device *pdev)
|
|||
/* Function to deinitialize the processing for usage id */
|
||||
static void hid_hinge_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct hid_sensor_hub_device *hsdev = pdev->dev.platform_data;
|
||||
struct hid_sensor_hub_device *hsdev = dev_get_platdata(&pdev->dev);
|
||||
struct iio_dev *indio_dev = platform_get_drvdata(pdev);
|
||||
struct hinge_state *st = iio_priv(indio_dev);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user