Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1517267
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 1/2] serial: pxa2xx: remove __deprecated annotation |
| Date | 2016-11-08 16:00 +0100 |
| Message-ID | <sBg2u-2e5-33@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
An otherwise very nice cleanup of the pxa2xx uart support marked the
init function of this driver as __deprecated:
drivers/tty/serial/pxa.c:944:1: error: 'serial_pxa_init' is deprecated [-Werror=deprecated-declarations]
This seems unhelpful to me, as we now warn for every allmodconfig build,
which is otherwise free of warnings on most architectures. Let's
remove the annotation again.
Fixes: ab28f51c77cd ("serial: rewrite pxa2xx-uart to use 8250_core")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
drivers/tty/serial/pxa.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/tty/serial/pxa.c b/drivers/tty/serial/pxa.c
index b9dd787cb561..75952811c0da 100644
--- a/drivers/tty/serial/pxa.c
+++ b/drivers/tty/serial/pxa.c
@@ -927,7 +927,7 @@ static struct platform_driver serial_pxa_driver = {
/* 8250 driver for PXA serial ports should be used */
-static int __deprecated __init serial_pxa_init(void)
+static int __init serial_pxa_init(void)
{
int ret;
--
2.9.0
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 1/2] serial: pxa2xx: remove __deprecated annotation Arnd Bergmann <arnd@arndb.de> - 2016-11-08 16:00 +0100
[PATCH 2/2] serial: pxa2xx: mark PM functions as __maybe_unused Arnd Bergmann <arnd@arndb.de> - 2016-11-08 16:00 +0100
Re: [PATCH 2/2] serial: pxa2xx: mark PM functions as __maybe_unused Robert Jarzmik <robert.jarzmik@free.fr> - 2016-11-08 18:40 +0100
csiph-web