From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752080AbdDAWgg (ORCPT ); Sat, 1 Apr 2017 18:36:36 -0400 Received: from alt13.smtp-out.videotron.ca ([135.19.0.26]:38849 "EHLO alt12.smtp-out.videotron.ca" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751987AbdDAWgb (ORCPT ); Sat, 1 Apr 2017 18:36:31 -0400 X-Authority-Analysis: v=2.1 cv=Lv0ysipc c=1 sm=1 tr=0 a=keA3yYpnlypCNW5BNWqu+w==:117 a=keA3yYpnlypCNW5BNWqu+w==:17 a=L9H7d07YOLsA:10 a=9cW_t1CCXrUA:10 a=s5jvgZ67dGcA:10 a=AzvcPWV-tVgA:10 a=KKAkSRfTAAAA:8 a=_0qeO3ElMST5N1HposAA:9 a=cvBusfyB2V15izCimMoJ:22 From: Nicolas Pitre To: Greg Kroah-Hartman , Jiri Slaby , linux-serial@vger.kernel.org Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH v2 3/5] serial: small Makefile reordering Date: Sat, 1 Apr 2017 18:21:17 -0400 Message-Id: <20170401222119.25106-4-nicolas.pitre@linaro.org> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20170401222119.25106-1-nicolas.pitre@linaro.org> References: <20170401222119.25106-1-nicolas.pitre@linaro.org> X-CMAE-Envelope: MS4wfC+S1Rp4nZt0Hi8251knRwfhBtTfrwZELRZmK1Yt9AGFcnTAz+2HINYVAsWE7BtmeBurk51W4LMvZt75HOj4N09PTXiV29NSZa+xXFZpp9bET+tTOjVU 8cJgVbeZCtoF3cJW9D4f6AQZtsOSci3SKMzxrALPLwJX/fm2Gc5CyAWMldMZgUYPhoqyqKnKrfVkIGuUCZMm+zDqMtn1pI8Fou/2ZLnPeEOcOy4NbsNl9EGC cXf3zb1LS3DyXlccLdrCyf87eUA1si+hRQJorygfuHnlkUzOubm5JbJEngce42RCeImRK/U967sZ+LVdWd/AKcS89akzOB8ujSizrSiJVrg= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Move 21285 entry down alongside other UART drivers to be more consistent with the rest of the file. It is kept before 8250 though, to preserve the existing link ordering between those two. Signed-off-by: Nicolas Pitre --- drivers/tty/serial/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/tty/serial/Makefile b/drivers/tty/serial/Makefile index 2d6288bc45..53c03e0051 100644 --- a/drivers/tty/serial/Makefile +++ b/drivers/tty/serial/Makefile @@ -3,7 +3,6 @@ # obj-$(CONFIG_SERIAL_CORE) += serial_core.o -obj-$(CONFIG_SERIAL_21285) += 21285.o obj-$(CONFIG_SERIAL_EARLYCON) += earlycon.o obj-$(CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST) += earlycon-arm-semihost.o @@ -17,6 +16,8 @@ obj-$(CONFIG_SERIAL_SUNZILOG) += sunzilog.o obj-$(CONFIG_SERIAL_SUNSU) += sunsu.o obj-$(CONFIG_SERIAL_SUNSAB) += sunsab.o +obj-$(CONFIG_SERIAL_21285) += 21285.o + # Now bring in any enabled 8250/16450/16550 type drivers. obj-$(CONFIG_SERIAL_8250) += 8250/ -- 2.9.3