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: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
35c4b1227e
commit
edbbee595d
@ -237,7 +237,7 @@ static int pm860x_touch_probe(struct platform_device *pdev)
|
|||||||
touch = kzalloc(sizeof(struct pm860x_touch), GFP_KERNEL);
|
touch = kzalloc(sizeof(struct pm860x_touch), GFP_KERNEL);
|
||||||
if (touch == NULL)
|
if (touch == NULL)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
dev_set_drvdata(&pdev->dev, touch);
|
platform_set_drvdata(pdev, touch);
|
||||||
|
|
||||||
touch->idev = input_allocate_device();
|
touch->idev = input_allocate_device();
|
||||||
if (touch->idev == NULL) {
|
if (touch->idev == NULL) {
|
||||||
|
@ -325,7 +325,7 @@ err_free_mem:
|
|||||||
|
|
||||||
static int atmel_tsadcc_remove(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;
|
struct resource *res;
|
||||||
|
|
||||||
free_irq(ts_dev->irq, ts_dev);
|
free_irq(ts_dev->irq, ts_dev);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user