From patchwork Mon May 10 11:24:52 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 98163 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o4ABM6eF015818 for ; Mon, 10 May 2010 11:23:39 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756107Ab0EJLXj (ORCPT ); Mon, 10 May 2010 07:23:39 -0400 Received: from mail-px0-f174.google.com ([209.85.212.174]:36096 "EHLO mail-px0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756829Ab0EJLXi (ORCPT ); Mon, 10 May 2010 07:23:38 -0400 Received: by pxi5 with SMTP id 5so1592834pxi.19 for ; Mon, 10 May 2010 04:23:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:date:message-id :in-reply-to:references:subject; bh=M1ZQp3aRgsmtbgPJmQ6s7vVcLgQgX2MbYn8IWEWCBIA=; b=LKUtCla55oLgV6N89Lx70Msgh7FHtQpRVEFzKN8+AsEebTuvlSoIZzF9SGv9Z3oCGV 87YgHmk7icx8DsoJA3laJVfhLaEKCxGD49UdughnHla/NEnNaRe9yUVZQYboAM0gp+iz sRFbCB0+6aKjcsRsJ51Z7Kz/A+ruI7bDy1QFc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:date:message-id:in-reply-to:references:subject; b=Ox48Ef1Ia4YUtuhwk2Tv4G6umH3ushYRYhh4uxRYluw3P4nPp73OxXYeJiImttnJZL WDgQ0+EWtigfOB87Ez5EOWWuTHIKEBX0c3IdfBDU00pNlQHyoai8BL+hXLHoD9/1nKtm ygCaGzrVlbwvwMXwTWlOlrd2QvjU+hKI+q+mI= Received: by 10.115.80.1 with SMTP id h1mr3003026wal.116.1273490618363; Mon, 10 May 2010 04:23:38 -0700 (PDT) Received: from [127.0.0.1] (49.14.32.202.bf.2iij.net [202.32.14.49]) by mx.google.com with ESMTPS id c1sm25164352wam.7.2010.05.10.04.23.37 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 10 May 2010 04:23:37 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , lethal@linux-sh.org Date: Mon, 10 May 2010 20:24:52 +0900 Message-Id: <20100510112452.14587.53366.sendpatchset@t400s> In-Reply-To: <20100510112318.14587.10085.sendpatchset@t400s> References: <20100510112318.14587.10085.sendpatchset@t400s> Subject: [PATCH 12/13] sh: Get rid of sh7724 main clock names Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Mon, 10 May 2010 11:23:40 +0000 (UTC) --- 0012/arch/sh/kernel/cpu/sh4a/clock-sh7724.c +++ work/arch/sh/kernel/cpu/sh4a/clock-sh7724.c 2010-05-10 19:32:46.000000000 +0900 @@ -41,8 +41,6 @@ /* Fixed 32 KHz root clock for RTC and Power Management purposes */ static struct clk r_clk = { - .name = "rclk", - .id = -1, .rate = 32768, }; @@ -51,8 +49,6 @@ static struct clk r_clk = { * from the platform code. */ struct clk extal_clk = { - .name = "extal", - .id = -1, .rate = 33333333, }; @@ -76,8 +72,6 @@ static struct clk_ops fll_clk_ops = { }; static struct clk fll_clk = { - .name = "fll_clk", - .id = -1, .ops = &fll_clk_ops, .parent = &r_clk, .flags = CLK_ENABLE_ON_INIT, @@ -98,8 +92,6 @@ static struct clk_ops pll_clk_ops = { }; static struct clk pll_clk = { - .name = "pll_clk", - .id = -1, .ops = &pll_clk_ops, .flags = CLK_ENABLE_ON_INIT, }; @@ -115,8 +107,6 @@ static struct clk_ops div3_clk_ops = { }; static struct clk div3_clk = { - .name = "div3_clk", - .id = -1, .ops = &div3_clk_ops, .parent = &pll_clk, };