From: Nicolas Ferre <nicolas.ferre@atmel.com>
To: kbuild test robot <lkp@intel.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: kbuild-all@01.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org,
jslaby@suse.com, davidm@egauge.net
Subject: Re: [PATCH 2/2] serial: atmel: add support for new UART version
Date: Tue, 26 Jan 2016 11:25:32 +0100 [thread overview]
Message-ID: <56A7499C.8090109@atmel.com> (raw)
In-Reply-To: <201601260224.Djb6afTp%fengguang.wu@intel.com>
Le 25/01/2016 19:34, kbuild test robot a écrit :
> Hi Nicolas,
>
> [auto build test ERROR on usb/usb-testing]
> [also build test ERROR on v4.5-rc1 next-20160125]
> [if your patch is applied to the wrong git tree, please drop us a note to help improving the system]
>
> url: https://github.com/0day-ci/linux/commits/Nicolas-Ferre/serial-atmel-trivial-clean-the-IP-version-decoding-code/20160126-014116
> base: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git usb-testing
> config: i386-allmodconfig (attached as .config)
> reproduce:
> # save the attached .config to linux build tree
> make ARCH=i386
>
> All errors (new ones prefixed by >>):
>
> drivers/tty/serial/atmel_serial.c: In function 'atmel_get_ip_name':
>>> drivers/tty/serial/atmel_serial.c:1717:2: error: 'new_uart' undeclared (first use in this function)
Sorry for this dumb error and the associated noise!
I send a v2 immediately.
> new_uart = 0x55415254; /* UART */
> ^
> drivers/tty/serial/atmel_serial.c:1717:2: note: each undeclared identifier is reported only once for each function it appears in
>
> vim +/new_uart +1717 drivers/tty/serial/atmel_serial.c
>
> 1711 int name = atmel_uart_readl(port, ATMEL_US_NAME);
> 1712 u32 version;
> 1713 u32 usart, dbgu_uart;
> 1714 /* ASCII decoding for IP version */
> 1715 usart = 0x55534152; /* USAR(T) */
> 1716 dbgu_uart = 0x44424755; /* DBGU */
>> 1717 new_uart = 0x55415254; /* UART */
> 1718
> 1719 atmel_port->has_hw_timer = false;
> 1720
>
> ---
> 0-DAY kernel test infrastructure Open Source Technology Center
> https://lists.01.org/pipermail/kbuild-all Intel Corporation
>
--
Nicolas Ferre
WARNING: multiple messages have this Message-ID (diff)
From: nicolas.ferre@atmel.com (Nicolas Ferre)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 2/2] serial: atmel: add support for new UART version
Date: Tue, 26 Jan 2016 11:25:32 +0100 [thread overview]
Message-ID: <56A7499C.8090109@atmel.com> (raw)
In-Reply-To: <201601260224.Djb6afTp%fengguang.wu@intel.com>
Le 25/01/2016 19:34, kbuild test robot a ?crit :
> Hi Nicolas,
>
> [auto build test ERROR on usb/usb-testing]
> [also build test ERROR on v4.5-rc1 next-20160125]
> [if your patch is applied to the wrong git tree, please drop us a note to help improving the system]
>
> url: https://github.com/0day-ci/linux/commits/Nicolas-Ferre/serial-atmel-trivial-clean-the-IP-version-decoding-code/20160126-014116
> base: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git usb-testing
> config: i386-allmodconfig (attached as .config)
> reproduce:
> # save the attached .config to linux build tree
> make ARCH=i386
>
> All errors (new ones prefixed by >>):
>
> drivers/tty/serial/atmel_serial.c: In function 'atmel_get_ip_name':
>>> drivers/tty/serial/atmel_serial.c:1717:2: error: 'new_uart' undeclared (first use in this function)
Sorry for this dumb error and the associated noise!
I send a v2 immediately.
> new_uart = 0x55415254; /* UART */
> ^
> drivers/tty/serial/atmel_serial.c:1717:2: note: each undeclared identifier is reported only once for each function it appears in
>
> vim +/new_uart +1717 drivers/tty/serial/atmel_serial.c
>
> 1711 int name = atmel_uart_readl(port, ATMEL_US_NAME);
> 1712 u32 version;
> 1713 u32 usart, dbgu_uart;
> 1714 /* ASCII decoding for IP version */
> 1715 usart = 0x55534152; /* USAR(T) */
> 1716 dbgu_uart = 0x44424755; /* DBGU */
>> 1717 new_uart = 0x55415254; /* UART */
> 1718
> 1719 atmel_port->has_hw_timer = false;
> 1720
>
> ---
> 0-DAY kernel test infrastructure Open Source Technology Center
> https://lists.01.org/pipermail/kbuild-all Intel Corporation
>
--
Nicolas Ferre
WARNING: multiple messages have this Message-ID (diff)
From: Nicolas Ferre <nicolas.ferre@atmel.com>
To: kbuild test robot <lkp@intel.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: <kbuild-all@01.org>, <linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>, <linux-serial@vger.kernel.org>,
<jslaby@suse.com>, <davidm@egauge.net>
Subject: Re: [PATCH 2/2] serial: atmel: add support for new UART version
Date: Tue, 26 Jan 2016 11:25:32 +0100 [thread overview]
Message-ID: <56A7499C.8090109@atmel.com> (raw)
In-Reply-To: <201601260224.Djb6afTp%fengguang.wu@intel.com>
Le 25/01/2016 19:34, kbuild test robot a écrit :
> Hi Nicolas,
>
> [auto build test ERROR on usb/usb-testing]
> [also build test ERROR on v4.5-rc1 next-20160125]
> [if your patch is applied to the wrong git tree, please drop us a note to help improving the system]
>
> url: https://github.com/0day-ci/linux/commits/Nicolas-Ferre/serial-atmel-trivial-clean-the-IP-version-decoding-code/20160126-014116
> base: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git usb-testing
> config: i386-allmodconfig (attached as .config)
> reproduce:
> # save the attached .config to linux build tree
> make ARCH=i386
>
> All errors (new ones prefixed by >>):
>
> drivers/tty/serial/atmel_serial.c: In function 'atmel_get_ip_name':
>>> drivers/tty/serial/atmel_serial.c:1717:2: error: 'new_uart' undeclared (first use in this function)
Sorry for this dumb error and the associated noise!
I send a v2 immediately.
> new_uart = 0x55415254; /* UART */
> ^
> drivers/tty/serial/atmel_serial.c:1717:2: note: each undeclared identifier is reported only once for each function it appears in
>
> vim +/new_uart +1717 drivers/tty/serial/atmel_serial.c
>
> 1711 int name = atmel_uart_readl(port, ATMEL_US_NAME);
> 1712 u32 version;
> 1713 u32 usart, dbgu_uart;
> 1714 /* ASCII decoding for IP version */
> 1715 usart = 0x55534152; /* USAR(T) */
> 1716 dbgu_uart = 0x44424755; /* DBGU */
>> 1717 new_uart = 0x55415254; /* UART */
> 1718
> 1719 atmel_port->has_hw_timer = false;
> 1720
>
> ---
> 0-DAY kernel test infrastructure Open Source Technology Center
> https://lists.01.org/pipermail/kbuild-all Intel Corporation
>
--
Nicolas Ferre
next prev parent reply other threads:[~2016-01-26 10:25 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-25 17:38 [PATCH 1/2] serial: atmel: trivial: clean the IP version decoding code Nicolas Ferre
2016-01-25 17:38 ` Nicolas Ferre
2016-01-25 17:38 ` Nicolas Ferre
2016-01-25 17:38 ` [PATCH 2/2] serial: atmel: add support for new UART version Nicolas Ferre
2016-01-25 17:38 ` Nicolas Ferre
2016-01-25 17:38 ` Nicolas Ferre
2016-01-25 18:34 ` kbuild test robot
2016-01-25 18:34 ` kbuild test robot
2016-01-25 18:34 ` kbuild test robot
2016-01-26 10:25 ` Nicolas Ferre [this message]
2016-01-26 10:25 ` Nicolas Ferre
2016-01-26 10:25 ` Nicolas Ferre
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=56A7499C.8090109@atmel.com \
--to=nicolas.ferre@atmel.com \
--cc=davidm@egauge.net \
--cc=gregkh@linuxfoundation.org \
--cc=jslaby@suse.com \
--cc=kbuild-all@01.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=lkp@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.