[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1294989497-2531-1-git-send-email-viresh.kumar@st.com>
Date: Fri, 14 Jan 2011 12:48:17 +0530
From: Viresh Kumar <viresh.kumar@...com>
To: <gregkh@...e.de>, <linux-kernel@...r.kernel.org>
Cc: Viresh Kumar <viresh.kumar@...com>
Subject: [PATCH] tty/tty_io.c: fix compilation warning
This patch fixes following compilation warning:
tty/tty_io.c:3309: warning: ignoring return value of 'device_create_file',
declared with attribute warn_unused_result
Signed-off-by: Viresh Kumar <viresh.kumar@...com>
---
drivers/tty/tty_io.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c
index 464d09d..b558f03 100644
--- a/drivers/tty/tty_io.c
+++ b/drivers/tty/tty_io.c
@@ -3291,6 +3291,8 @@ void console_sysfs_notify(void)
*/
int __init tty_init(void)
{
+ int ret = 0;
+
cdev_init(&tty_cdev, &tty_fops);
if (cdev_add(&tty_cdev, MKDEV(TTYAUX_MAJOR, 0), 1) ||
register_chrdev_region(MKDEV(TTYAUX_MAJOR, 0), 1, "/dev/tty") < 0)
@@ -3306,11 +3308,11 @@ int __init tty_init(void)
if (IS_ERR(consdev))
consdev = NULL;
else
- device_create_file(consdev, &dev_attr_active);
+ ret = device_create_file(consdev, &dev_attr_active);
#ifdef CONFIG_VT
vty_init(&console_fops);
#endif
- return 0;
+ return ret;
}
--
1.7.2.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists