From patchwork Thu Mar 17 07:10:58 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Zhu X-Patchwork-Id: 648 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.159.109) by localhost6.localdomain6 with IMAP4-SSL; 08 Jun 2011 14:44:21 -0000 Delivered-To: patches@linaro.org Received: by 10.151.46.5 with SMTP id y5cs31750ybj; Thu, 17 Mar 2011 00:11:25 -0700 (PDT) Received: by 10.224.28.133 with SMTP id m5mr739687qac.281.1300345884628; Thu, 17 Mar 2011 00:11:24 -0700 (PDT) Received: from ch1outboundpool.messaging.microsoft.com (ch1outboundpool.messaging.microsoft.com [216.32.181.184]) by mx.google.com with ESMTPS id l3si3503100qcu.166.2011.03.17.00.11.24 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 17 Mar 2011 00:11:24 -0700 (PDT) Received-SPF: neutral (google.com: 216.32.181.184 is neither permitted nor denied by best guess record for domain of R65037@freescale.com) client-ip=216.32.181.184; Authentication-Results: mx.google.com; spf=neutral (google.com: 216.32.181.184 is neither permitted nor denied by best guess record for domain of R65037@freescale.com) smtp.mail=R65037@freescale.com Received: from mail58-ch1-R.bigfish.com (216.32.181.169) by CH1EHSOBE002.bigfish.com (10.43.70.52) with Microsoft SMTP Server id 14.1.225.8; Thu, 17 Mar 2011 07:11:23 +0000 Received: from mail58-ch1 (localhost.localdomain [127.0.0.1]) by mail58-ch1-R.bigfish.com (Postfix) with ESMTP id 385D3109028F; Thu, 17 Mar 2011 07:11:23 +0000 (UTC) X-SpamScore: -3 X-BigFish: VS-3(zzbb2cKzz1202hzz8275bhz2dh2a8h668h62h) X-Spam-TCS-SCL: 1:0 X-Forefront-Antispam-Report: KIP:(null); UIP:(null); IPVD:NLI; H:mail.freescale.net; RD:none; EFVD:NLI Received: from mail58-ch1 (localhost.localdomain [127.0.0.1]) by mail58-ch1 (MessageSwitch) id 1300345876193569_23907; Thu, 17 Mar 2011 07:11:16 +0000 (UTC) Received: from CH1EHSMHS028.bigfish.com (snatpool1.int.messaging.microsoft.com [10.43.68.246]) by mail58-ch1.bigfish.com (Postfix) with ESMTP id 3D9884D00A3; Thu, 17 Mar 2011 07:11:11 +0000 (UTC) Received: from mail.freescale.net (70.37.183.190) by CH1EHSMHS028.bigfish.com (10.43.70.28) with Microsoft SMTP Server (TLS) id 14.1.225.8; Thu, 17 Mar 2011 07:11:06 +0000 Received: from az33smr02.freescale.net (10.64.34.200) by 039-SN1MMR1-003.039d.mgd.msft.net (10.84.1.16) with Microsoft SMTP Server id 14.1.270.2; Thu, 17 Mar 2011 02:11:05 -0500 Received: from x-VirtualBox.ap.freescale.net (x-VirtualBox.ap.freescale.net [10.192.242.62]) by az33smr02.freescale.net (8.13.1/8.13.0) with ESMTP id p2H7B1dI008815; Thu, 17 Mar 2011 02:11:02 -0500 (CDT) From: Richard Zhu To: CC: , , , , , , Richard Zhu Subject: [PATCH V1 1/3] ahci_platform: add two clk pointer member into ahci_platform_data struct Date: Thu, 17 Mar 2011 15:10:58 +0800 Message-ID: <1300345860-16574-1-git-send-email-Hong-Xing.Zhu@freescale.com> X-Mailer: git-send-email 1.7.1 MIME-Version: 1.0 X-OriginatorOrg: freescale.com Signed-off-by: Richard Zhu --- include/linux/ahci_platform.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/linux/ahci_platform.h b/include/linux/ahci_platform.h index be3d9a7..86b5e24 100644 --- a/include/linux/ahci_platform.h +++ b/include/linux/ahci_platform.h @@ -26,6 +26,8 @@ struct ahci_platform_data { const struct ata_port_info *ata_port_info; unsigned int force_port_map; unsigned int mask_port_map; + struct clk *sata_clk; + struct clk *sata_ref_clk; }; #endif /* _AHCI_PLATFORM_H */