From: Rob Herring Date: Mon, 16 Jan 2017 22:54:30 +0000 (-0600) Subject: tty_port: make tty_port_register_device wrap tty_port_register_device_attr X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=3086365db61ec00d206afa2dbaec4b3d771a38f1;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git tty_port: make tty_port_register_device wrap tty_port_register_device_attr tty_register_device is just a wrapper for tty_register_device_attr with NULL passed for drvdata and attr_grp. So similarly make tty_port_register_device a wrapper of tty_port_register_device_attr so that additions don't have to be made in both functions. Signed-off-by: Rob Herring Reviewed-by: Andy Shevchenko Reviewed-By: Sebastian Reichel Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/tty_port.c b/drivers/tty/tty_port.c index 606d9e5bf28f..1d8804843103 100644 --- a/drivers/tty/tty_port.c +++ b/drivers/tty/tty_port.c @@ -67,8 +67,7 @@ struct device *tty_port_register_device(struct tty_port *port, struct tty_driver *driver, unsigned index, struct device *device) { - tty_port_link_device(port, driver, index); - return tty_register_device(driver, index, device); + return tty_port_register_device_attr(port, driver, index, device, NULL, NULL); } EXPORT_SYMBOL_GPL(tty_port_register_device);