diff options
author | Frédéric Danis <frederic.danis.oss@gmail.com> | 2018-03-14 14:17:31 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-03-14 15:02:45 +0100 |
commit | c5e3d2070f75666242333081f369bc949c1731f0 (patch) | |
tree | 3cd1c24d540462290a2bb59bf0260a5508263136 | |
parent | d366c30d19f474c23e14111ac7198cee8a69103e (diff) | |
download | op-kernel-dev-c5e3d2070f75666242333081f369bc949c1731f0.zip op-kernel-dev-c5e3d2070f75666242333081f369bc949c1731f0.tar.gz |
serdev: Fix typo in serdev_device_alloc
Fix function name in serdev_device_alloc() definition
Signed-off-by: Frédéric Danis <frederic.danis.oss@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/tty/serdev/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serdev/core.c b/drivers/tty/serdev/core.c index f439c72..df93b72 100644 --- a/drivers/tty/serdev/core.c +++ b/drivers/tty/serdev/core.c @@ -350,7 +350,7 @@ static struct bus_type serdev_bus_type = { }; /** - * serdev_controller_alloc() - Allocate a new serdev device + * serdev_device_alloc() - Allocate a new serdev device * @ctrl: associated controller * * Caller is responsible for either calling serdev_device_add() to add the |