Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit edbbee59 authored by Jingoo Han's avatar Jingoo Han Committed by Dmitry Torokhov
Browse files

Input: touchscreen - use platform_{get,set}_drvdata()



Use the wrapper functions for getting and setting the driver data using
platform_device instead of using dev_{get,set}_drvdata() with &pdev->dev,
so we can directly pass a struct platform_device.

Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 35c4b122
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -237,7 +237,7 @@ static int pm860x_touch_probe(struct platform_device *pdev)
	touch = kzalloc(sizeof(struct pm860x_touch), GFP_KERNEL);
	if (touch == NULL)
		return -ENOMEM;
	dev_set_drvdata(&pdev->dev, touch);
	platform_set_drvdata(pdev, touch);

	touch->idev = input_allocate_device();
	if (touch->idev == NULL) {
+1 −1
Original line number Diff line number Diff line
@@ -325,7 +325,7 @@ static int atmel_tsadcc_probe(struct platform_device *pdev)

static int atmel_tsadcc_remove(struct platform_device *pdev)
{
	struct atmel_tsadcc *ts_dev = dev_get_drvdata(&pdev->dev);
	struct atmel_tsadcc *ts_dev = platform_get_drvdata(pdev);
	struct resource *res;

	free_irq(ts_dev->irq, ts_dev);