From: David Engraf Date: Tue, 5 Feb 2019 12:19:52 +0000 (+0100) Subject: device: Fix comment for driver_data in struct device X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2c6f4fc884a46b17c501e7f276e8a4ab97437b50;p=linux.git device: Fix comment for driver_data in struct device dev_set_drvdata/dev_get_drvdata is used to access driver_data in struct device. Signed-off-by: David Engraf Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/linux/device.h b/include/linux/device.h index a36830e2d0e5f..292b720c4bc22 100644 --- a/include/linux/device.h +++ b/include/linux/device.h @@ -988,7 +988,7 @@ struct device { void *platform_data; /* Platform specific data, device core doesn't touch it */ void *driver_data; /* Driver data, set and get with - dev_set/get_drvdata */ + dev_set_drvdata/dev_get_drvdata */ struct dev_links_info links; struct dev_pm_info power; struct dev_pm_domain *pm_domain;