From patchwork Tue Jun 4 05:13:52 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Horman X-Patchwork-Id: 2656801 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 E2CF3DF2A1 for ; Tue, 4 Jun 2013 05:13:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751803Ab3FDFN4 (ORCPT ); Tue, 4 Jun 2013 01:13:56 -0400 Received: from kirsty.vergenet.net ([202.4.237.240]:51954 "EHLO kirsty.vergenet.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751026Ab3FDFN4 (ORCPT ); Tue, 4 Jun 2013 01:13:56 -0400 Received: from ayumi.isobedori.kobe.vergenet.net (p5212-ipbfp1903kobeminato.hyogo.ocn.ne.jp [114.172.132.212]) by kirsty.vergenet.net (Postfix) with ESMTP id 14B8825B721; Tue, 4 Jun 2013 15:13:55 +1000 (EST) Received: by ayumi.isobedori.kobe.vergenet.net (Postfix, from userid 7100) id DF1DC6CE066; Tue, 4 Jun 2013 14:13:52 +0900 (JST) Date: Tue, 4 Jun 2013 14:13:52 +0900 From: Simon Horman To: Olof Johansson Cc: Arnd Bergmann , linux-sh@vger.kernel.org, arm@kernel.org, linux-arm-kernel@lists.infradead.org, Magnus Damm , Sergei Shtylyov Subject: Re: [PATCH 2/2] ARM: shmobile: r8A7779: fix Ether device name Message-ID: <20130604051352.GW23054@verge.net.au> References: <1369645206-3682-1-git-send-email-horms+renesas@verge.net.au> <1369645206-3682-3-git-send-email-horms+renesas@verge.net.au> <20130528040043.GL13532@quad.lixom.net> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20130528040043.GL13532@quad.lixom.net> Organisation: Horms Solutions Ltd. User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org On Mon, May 27, 2013 at 09:00:43PM -0700, Olof Johansson wrote: > Hi, > > > On Mon, May 27, 2013 at 06:00:06PM +0900, Simon Horman wrote: > > From: Sergei Shtylyov > > > > While recasting the commit "ARM: shmobile: R8A7779: add Ether support", I made a > > typo in the platform device's name: used underscore instead of hyphen. > > Minor nit: if this has been merged, then including the SHA is useful too. Thanks, I have updated the changelog to: ARM: shmobile: r8A7779: fix Ether device name While recasting the commit dace48d04dee46a3409d5e13cd98031522e46377 ("ARM: shmobile: R8A7779: add Ether support"), I made a typo in the platform device's name: used underscore instead of hyphen. Signed-off-by: Sergei Shtylyov [horms+renesas@verge.net.au Add SHA of referenced commit to changlog] Signed-off-by: Simon Horman --- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/arch/arm/mach-shmobile/setup-r8a7779.c b/arch/arm/mach-shmobile/setup-r8a7779.c index b0b3948..c14a69b 100644 --- a/arch/arm/mach-shmobile/setup-r8a7779.c +++ b/arch/arm/mach-shmobile/setup-r8a7779.c @@ -443,7 +443,7 @@ void __init r8a7779_add_standard_devices(void) void __init r8a7779_add_ether_device(struct sh_eth_plat_data *pdata) { - platform_device_register_resndata(&platform_bus, "sh_eth", -1, + platform_device_register_resndata(&platform_bus, "sh-eth", -1, ether_resources, ARRAY_SIZE(ether_resources), pdata, sizeof(*pdata));