From patchwork Sat Jun 8 21:24:35 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergei Shtylyov X-Patchwork-Id: 2693101 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 12B9B3FC8C for ; Sat, 8 Jun 2013 21:24:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752923Ab3FHVY1 (ORCPT ); Sat, 8 Jun 2013 17:24:27 -0400 Received: from mail-lb0-f175.google.com ([209.85.217.175]:52370 "EHLO mail-lb0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752884Ab3FHVY1 (ORCPT ); Sat, 8 Jun 2013 17:24:27 -0400 Received: by mail-lb0-f175.google.com with SMTP id r10so1084198lbi.20 for ; Sat, 08 Jun 2013 14:24:26 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=to:subject:from:organization:date:cc:mime-version:content-type :content-transfer-encoding:message-id:x-gm-message-state; bh=ZNGq43b4FJGNpvhh544VG/KlZzjlLuh0IzhObsPE6e8=; b=Eh5kF2/bsGkbT5IAzBugmtnndSgg6YVzkVhBvXqlYR/599IVwr7xBxoMACUvHUFnOH VY+IeMeTRH89FuDREqU6p3843DwoODzB8Ff6fbymXlNHmXOAP7mTYBwg4Mo65Z+bE1zq MfFe7TZOo1T8/8gDIMhCwbP4lIAn/sNhtihf2dmKv/vms0FNTTnAXAmBhAnPmhKiww12 YFmQoNYsWcMEKMjqDT85Dzb9KSM2v/OSao5SKfs98j0Y80dgoymzXxw/C2KtmMAXB2AX wraCfzLrC/FwJQ7e2xqtTUbSyF8QKx57FcNi/OwQhtu/9IUEvu9jBXpUIcq+491kmGcw V7iQ== X-Received: by 10.152.21.40 with SMTP id s8mr2026300lae.6.1370726665968; Sat, 08 Jun 2013 14:24:25 -0700 (PDT) Received: from wasted.dev.rtsoft.ru (mail.dev.rtsoft.ru. [213.79.90.226]) by mx.google.com with ESMTPSA id 4sm1765422lai.4.2013.06.08.14.24.24 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Sat, 08 Jun 2013 14:24:25 -0700 (PDT) To: horms@verge.net.au, linux-sh@vger.kernel.org Subject: [PATCH v2 2/2] ARM: shmobile: r8a7779: fix Ether device name From: Sergei Shtylyov Organization: Cogent Embedded Date: Sun, 9 Jun 2013 01:24:35 +0400 Cc: magnus.damm@gmail.com, linux@arm.linux.org.uk, linux-arm-kernel@lists.infradead.org MIME-Version: 1.0 Message-Id: <201306090124.35464.sergei.shtylyov@cogentembedded.com> X-Gm-Message-State: ALoCoQkIAh71Ny6YmhcGvJUiLrjyqiKXPq+CDm/fjQ67Ct4QVbWh/ASTC+6prjzQagB9/rHkCiJD Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org While recasting commit dace48d04dee46a3409d5e13cd98031522e46377 (ARM: shmobile: R8A7779: add Ether support), I made a typo in the platform device's name: used underscore instead of hyphen. However, there's now patch merged to net-next.git renaming the platform device from "sh-eth" to "r8a777x-ehter", so it makes the most sense to change the name straight to that one. Signed-off-by: Sergei Shtylyov --- The patch is atop of the 'renesas-next-20130607' tag of the 'renesas.git' tree and the USB patches I have submitted earlier. Changes in version 2: - changed the platform device's name as in the patch merged to 'net-next.git'; - lowercased the SoC name in the subject. arch/arm/mach-shmobile/setup-r8a7779.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 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 Index: renesas/arch/arm/mach-shmobile/setup-r8a7779.c =================================================================== --- renesas.orig/arch/arm/mach-shmobile/setup-r8a7779.c +++ renesas/arch/arm/mach-shmobile/setup-r8a7779.c @@ -596,7 +596,7 @@ void __init r8a7779_add_standard_devices 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, "r8a777x-ether", -1, ether_resources, ARRAY_SIZE(ether_resources), pdata, sizeof(*pdata));