From patchwork Sat Apr 1 22:21:17 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nicolas Pitre X-Patchwork-Id: 96584 Delivered-To: patch@linaro.org Received: by 10.140.89.233 with SMTP id v96csp1306629qgd; Sat, 1 Apr 2017 15:36:37 -0700 (PDT) X-Received: by 10.99.215.85 with SMTP id w21mr9614931pgi.217.1491086197551; Sat, 01 Apr 2017 15:36:37 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id d185si9259529pgc.362.2017.04.01.15.36.37; Sat, 01 Apr 2017 15:36:37 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=linaro.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752027AbdDAWgg (ORCPT + 24 others); 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 Received: from yoda.home ([96.23.157.65]) by Videotron with SMTP id uROhcVwKzHh2duROiccJWj; Sat, 01 Apr 2017 18:21:29 -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 Received: from xanadu.home (xanadu.home [192.168.2.2]) by yoda.home (Postfix) with ESMTP id 380CB2DA064A; Sat, 1 Apr 2017 18:21:27 -0400 (EDT) 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 Precedence: bulk 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(-) -- 2.9.3 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/