From patchwork Fri May 31 15:57:05 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ulrich Hecht X-Patchwork-Id: 2644831 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 125F0DFB79 for ; Fri, 31 May 2013 15:57:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753869Ab3EaP5W (ORCPT ); Fri, 31 May 2013 11:57:22 -0400 Received: from mail-bk0-f54.google.com ([209.85.214.54]:35005 "EHLO mail-bk0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756740Ab3EaP5U (ORCPT ); Fri, 31 May 2013 11:57:20 -0400 Received: by mail-bk0-f54.google.com with SMTP id it16so840610bkc.27 for ; Fri, 31 May 2013 08:57:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=wvl7G/kYQft64Li8bFEfqSgsSkCWLRdjzQbcfHcqL9E=; b=VB8OJKGF+cXTm6biLyaB5n/oYhRP8rF1lODiA9RkNw9xck3TiVv7tfo6yteT33gOuy YTYi54UHMwwtIBFZbiDZTAVziOTTOqwrVF7f5REDaNNvUL76s5IP9Rat12wMKWVj3A8e lBEWyD3SgD9FWPh8+um0DFBPPRxZifLFMiH9JPzfyZMdvE5e+vPHL5v7ijacsD0NFScN ueIn7IA6LiOR2pPwe2HaYbY7J27EGjQly6BUGo9d3CCFHWRRNpTZg/nCvx1aE03G414F 8B3I1OVIXnfKX6Irzy1laQ5zoks/3/Cqdt0D8pC+Vz6Bn5wiYfimaZT3TNnIRXBik5VC Orcg== X-Received: by 10.204.191.72 with SMTP id dl8mr2371562bkb.56.1370015838744; Fri, 31 May 2013 08:57:18 -0700 (PDT) Received: from groucho.site (188-194-147-14-dynip.superkabel.de. [188.194.147.14]) by mx.google.com with ESMTPSA id hh3sm2786089bkc.5.2013.05.31.08.57.17 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 31 May 2013 08:57:18 -0700 (PDT) From: Ulrich Hecht To: linux-sh@vger.kernel.org, lethal@linux-sh.org, shinya.kuribayashi.px@renesas.com, takashi.yoshii.zj@renesas.com, magnus.damm@gmail.com, kuninori.morimoto.gx@renesas.com, horms@verge.net.au Cc: Ulrich Hecht Subject: [PATCH v3 5/5] ARM: shmobile: lager: map HSCIF0/1 to unused pins Date: Fri, 31 May 2013 17:57:05 +0200 Message-Id: <1370015825-29383-6-git-send-email-ulrich.hecht@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1370015825-29383-1-git-send-email-ulrich.hecht@gmail.com> References: <1370015825-29383-1-git-send-email-ulrich.hecht@gmail.com> Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org These pins are not actually connected on the board, but at least they don't conflict with anything else. Signed-off-by: Ulrich Hecht --- arch/arm/mach-shmobile/board-lager.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/arm/mach-shmobile/board-lager.c b/arch/arm/mach-shmobile/board-lager.c index 1e99b17..d8bd237 100644 --- a/arch/arm/mach-shmobile/board-lager.c +++ b/arch/arm/mach-shmobile/board-lager.c @@ -77,6 +77,10 @@ static const struct pinctrl_map lager_pinctrl_map[] = { /* SCIF1 (CN20: DEBUG SERIAL1) */ PIN_MAP_MUX_GROUP_DEFAULT("sh-sci.7", "pfc-r8a7790", "scif1_data", "scif1"), + PIN_MAP_MUX_GROUP_DEFAULT("sh-sci.8", "pfc-r8a7790", + "hscif0_data", "hscif0"), + PIN_MAP_MUX_GROUP_DEFAULT("sh-sci.9", "pfc-r8a7790", + "hscif1_data_b", "hscif1"), }; static void __init lager_add_standard_devices(void)