diff options
author | Rolf Eike Beer <eike-kernel@sf-tec.de> | 2015-09-04 20:49:14 +0200 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2015-09-29 15:23:14 +0200 |
commit | 1207775428d57508fd1b4c9403833463a6b632c2 (patch) | |
tree | 67cf5df5148bcb31a0f14948b84f79da5723407c /drivers/base/class.c | |
parent | 636db7a96cbd95f7842246a3f5f842ba791cd393 (diff) | |
download | linux-1207775428d57508fd1b4c9403833463a6b632c2.tar.gz linux-1207775428d57508fd1b4c9403833463a6b632c2.tar.bz2 linux-1207775428d57508fd1b4c9403833463a6b632c2.zip |
class_find_device: fix reference to argument "match"
There is no argument "fn".
Signed-off-by: Rolf Eike Beer <eike-kernel@sf-tec.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/base/class.c')
-rw-r--r-- | drivers/base/class.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/class.c b/drivers/base/class.c index 6e810881e48b..71059e32bebc 100644 --- a/drivers/base/class.c +++ b/drivers/base/class.c @@ -406,7 +406,7 @@ EXPORT_SYMBOL_GPL(class_for_each_device); * * Note, you will need to drop the reference with put_device() after use. * - * @fn is allowed to do anything including calling back into class + * @match is allowed to do anything including calling back into class * code. There's no locking restriction. */ struct device *class_find_device(struct class *class, struct device *start, |