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: 87349 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id E77D7B6FF9 for ; Thu, 17 Mar 2011 18:11:27 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751646Ab1CQHL1 (ORCPT ); Thu, 17 Mar 2011 03:11:27 -0400 Received: from ch1outboundpool.messaging.microsoft.com ([216.32.181.186]:22526 "EHLO ch1outboundpool.messaging.microsoft.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750845Ab1CQHL0 (ORCPT ); Thu, 17 Mar 2011 03:11:26 -0400 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 Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org 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 */