From patchwork Wed May 11 08:27:07 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Olliver Schinagl X-Patchwork-Id: 9065961 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 26633BF29F for ; Wed, 11 May 2016 08:29:38 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4D959200ED for ; Wed, 11 May 2016 08:29:37 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 8655D200E7 for ; Wed, 11 May 2016 08:29:36 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1b0PV0-0007mC-1F; Wed, 11 May 2016 08:28:06 +0000 Received: from 7of9.schinagl.nl ([88.159.158.68]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1b0PUx-0007Qh-IR for linux-arm-kernel@lists.infradead.org; Wed, 11 May 2016 08:28:04 +0000 Received: from um-mba-140.cloud.ultimaker.com (unknown [185.66.93.49]) by 7of9.schinagl.nl (Postfix) with ESMTPA id B075AFF1B6; Wed, 11 May 2016 10:27:18 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=schinagl.nl; s=7of9; t=1462955238; bh=BVCjwV3xNku3E4FiIRXly5rkSRU3ItR0zoTy27WYTcg=; h=From:To:Cc:Subject:Date; b=ccsJfQVH0mw0PG7MQvVaQYBMz7y2DTTS4Jfe9AbtqEfiPhVVuRJbUb4NJE2jemEv3 iKrfDta9TnYo+ngBL+lx4atKp+qEW6rlp4FfrjU6QgHoEBSAIn1Ci8Ab6HgY9AopMk 7ncWKR7iZBjAQ4TCa/RlU3ESZH91JK9bOkuch7ls= From: Olliver Schinagl To: Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Russell King , arm@kernel.org Subject: [PATCH 1/1] devicetree: sunxi: Add OLinuXino Lime2 eMMC to the Makefile Date: Wed, 11 May 2016 10:27:07 +0200 Message-Id: <1462955227-4454-1-git-send-email-oliver@schinagl.nl> X-Mailer: git-send-email 2.8.1 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20160511_012803_769506_5FFD5E83 X-CRM114-Status: GOOD ( 10.41 ) X-Spam-Score: -4.1 (----) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: devicetree@vger.kernel.org, dev@linux-sunxi.org, linux-kernel@vger.kernel.org, Olliver Schinagl , Chen-Yu Tsai , Maxime Ripard , linux-arm-kernel@lists.infradead.org MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-5.5 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_MED,RP_MATCHES_RCVD,T_DKIM_INVALID,UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP ARM: dts: sunxi: Add a olinuxino-lime2-emmc added the new emmc equipped lime2 but forgot its Makefile. This patch adds an entry to the Makefile. Signed-off-by: Olliver Schinagl Acked-by: Maxime Ripard --- Hi list, would it be possible to squash or atleast add this patch with/to my previous patch, ARM: dts: sunxi: Add a olinuxino-lime2-emmc? I mistakenly forgot to add the changes to the Makefile in the patch. Sorry, and thank you! Olliver arch/arm/boot/dts/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile index 95c1923..07f4cf8 100644 --- a/arch/arm/boot/dts/Makefile +++ b/arch/arm/boot/dts/Makefile @@ -695,6 +695,7 @@ dtb-$(CONFIG_MACH_SUN7I) += \ sun7i-a20-olimex-som-evb.dtb \ sun7i-a20-olinuxino-lime.dtb \ sun7i-a20-olinuxino-lime2.dtb \ + sun7i-a20-olinuxino-lime2-emmc.dtb \ sun7i-a20-olinuxino-micro.dtb \ sun7i-a20-orangepi.dtb \ sun7i-a20-orangepi-mini.dtb \