ide: remove driver_data direct access of struct device
In the near future, the driver core is going to not allow direct access to the driver_data pointer in struct device. Instead, the functions dev_get_drvdata() and dev_set_drvdata() should be used. These functions have been around since the beginning, so are backwards compatible with all older kernel versions. Cc: linux-ide@vger.kernel.org Acked-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
@@ -112,7 +112,7 @@ out:
|
||||
|
||||
static int __devexit plat_ide_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct ide_host *host = pdev->dev.driver_data;
|
||||
struct ide_host *host = dev_get_drvdata(&pdev->dev);
|
||||
|
||||
ide_host_remove(host);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user