From patchwork Tue Jun 28 09:25:10 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 70983 Delivered-To: patch@linaro.org Received: by 10.140.28.4 with SMTP id 4csp1483959qgy; Tue, 28 Jun 2016 02:25:34 -0700 (PDT) X-Received: by 10.66.120.138 with SMTP id lc10mr102287pab.33.1467105934577; Tue, 28 Jun 2016 02:25:34 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id 138si32681008pfv.78.2016.06.28.02.25.30; Tue, 28 Jun 2016 02:25:34 -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; dkim=pass header.i=@nifty.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 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752464AbcF1JZ3 (ORCPT + 30 others); Tue, 28 Jun 2016 05:25:29 -0400 Received: from conuserg-10.nifty.com ([210.131.2.77]:42174 "EHLO conuserg-10.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752042AbcF1JZ1 (ORCPT ); Tue, 28 Jun 2016 05:25:27 -0400 Received: from beagle.diag.org (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-10.nifty.com with ESMTP id u5S9Nl97014995; Tue, 28 Jun 2016 18:23:48 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-10.nifty.com u5S9Nl97014995 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1467105828; bh=q7svIO0lPVci2DA/RffBF5u+9MYUOwBwg53l96eG94o=; h=From:To:Cc:Subject:Date:From; b=0jh1vu/xP3sLXG0HNuyusIQ6W4vf3HxSyZtywS1s0YEWrCokQq39esbURygbYfJpt x2qVijM4rxrGVfhca608SzvMdxqoSqtWiWHKy496aPzm/XeO5r69vyw7wnOU4/TY8u n3UEb6miN7R6lrh2aPtUqITTeBE3u0EjBPgk8vbZtUUMFu/Er632t2R+RwYGObKNdo RGuJALJP+CLb+LZGu4bsNfGzKKDsWCusxszfFEG23NZJPI1iyQ7PdtarPecorHkT5E lEHlTXi2sxSC6fourcsXebEu3G1dmviWWTJZw5P8XE0LytgE9Tx1Wyc9FsDBH1Twkt kr6L5QRaJJEoQ== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: arm@kernel.org Cc: Masahiro Yamada , linux-arm-kernel@lists.infradead.org, Russell King , linux-kernel@vger.kernel.org Subject: [PATCH] ARM: uniphier: remove empty DT machine descriptor Date: Tue, 28 Jun 2016 18:25:10 +0900 Message-Id: <1467105910-5081-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Since the initial support of mach-uniphier, this has always been just empty. Signed-off-by: Masahiro Yamada --- arch/arm/mach-uniphier/Makefile | 1 - arch/arm/mach-uniphier/uniphier.c | 30 ------------------------------ 2 files changed, 31 deletions(-) delete mode 100644 arch/arm/mach-uniphier/uniphier.c -- 1.9.1 diff --git a/arch/arm/mach-uniphier/Makefile b/arch/arm/mach-uniphier/Makefile index 1233f9b..396afe1 100644 --- a/arch/arm/mach-uniphier/Makefile +++ b/arch/arm/mach-uniphier/Makefile @@ -1,2 +1 @@ -obj-y := uniphier.o obj-$(CONFIG_SMP) += platsmp.o headsmp.o diff --git a/arch/arm/mach-uniphier/uniphier.c b/arch/arm/mach-uniphier/uniphier.c deleted file mode 100644 index 9be10ef..0000000 --- a/arch/arm/mach-uniphier/uniphier.c +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (C) 2015 Masahiro Yamada - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - */ - -#include - -static const char * const uniphier_dt_compat[] __initconst = { - "socionext,ph1-sld3", - "socionext,ph1-ld4", - "socionext,ph1-pro4", - "socionext,ph1-sld8", - "socionext,ph1-pro5", - "socionext,proxstream2", - "socionext,ph1-ld6b", - NULL, -}; - -DT_MACHINE_START(UNIPHIER, "Socionext UniPhier") - .dt_compat = uniphier_dt_compat, -MACHINE_END