From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752786AbcAZWHo (ORCPT ); Tue, 26 Jan 2016 17:07:44 -0500 Received: from emh02.mail.saunalahti.fi ([62.142.5.108]:54372 "EHLO emh02.mail.saunalahti.fi" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751737AbcAZWHm (ORCPT ); Tue, 26 Jan 2016 17:07:42 -0500 Date: Wed, 27 Jan 2016 00:07:38 +0200 From: Aaro Koskinen To: Sebastian Reichel Cc: Tony Lindgren , =?iso-8859-1?Q?Beno=EEt?= Cousson , Paul Walmsley , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , linux-omap@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/5] ARM: OMAP2+: hwmod data: Add SSI data for omap36xx Message-ID: <20160126220738.GG15550@darkstar.musicnaut.iki.fi> References: <1453045749-22642-1-git-send-email-sre@kernel.org> <1453045749-22642-2-git-send-email-sre@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1453045749-22642-2-git-send-email-sre@kernel.org> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Jan 17, 2016 at 04:49:05PM +0100, Sebastian Reichel wrote: > This patch enables Synchronous Serial Interface (SSI) > hwmod support for OMAP36xx SoCs (used by Nokia N950/N9). > > Signed-off-by: Sebastian Reichel Tested-by: Aaro Koskinen > --- > arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | 13 +++++++------ > 1 file changed, 7 insertions(+), 6 deletions(-) > > diff --git a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c > index aff78d5198d2..ed972029dce1 100644 > --- a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c > +++ b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c > @@ -3625,14 +3625,14 @@ static struct omap_hwmod_class_sysconfig omap34xx_ssi_sysc = { > .sysc_fields = &omap_hwmod_sysc_type1, > }; > > -static struct omap_hwmod_class omap34xx_ssi_hwmod_class = { > +static struct omap_hwmod_class omap3xxx_ssi_hwmod_class = { > .name = "ssi", > .sysc = &omap34xx_ssi_sysc, > }; > > -static struct omap_hwmod omap34xx_ssi_hwmod = { > +static struct omap_hwmod omap3xxx_ssi_hwmod = { > .name = "ssi", > - .class = &omap34xx_ssi_hwmod_class, > + .class = &omap3xxx_ssi_hwmod_class, > .clkdm_name = "core_l4_clkdm", > .main_clk = "ssi_ssr_fck", > .prcm = { > @@ -3647,9 +3647,9 @@ static struct omap_hwmod omap34xx_ssi_hwmod = { > }; > > /* L4 CORE -> SSI */ > -static struct omap_hwmod_ocp_if omap34xx_l4_core__ssi = { > +static struct omap_hwmod_ocp_if omap3xxx_l4_core__ssi = { > .master = &omap3xxx_l4_core_hwmod, > - .slave = &omap34xx_ssi_hwmod, > + .slave = &omap3xxx_ssi_hwmod, > .clk = "ssi_ick", > .user = OCP_USER_MPU | OCP_USER_SDMA, > }; > @@ -3802,7 +3802,7 @@ static struct omap_hwmod_ocp_if *omap34xx_hwmod_ocp_ifs[] __initdata = { > &omap3xxx_sad2d__l3, > &omap3xxx_l4_core__mmu_isp, > &omap3xxx_l3_main__mmu_iva, > - &omap34xx_l4_core__ssi, > + &omap3xxx_l4_core__ssi, > NULL > }; > > @@ -3826,6 +3826,7 @@ static struct omap_hwmod_ocp_if *omap36xx_hwmod_ocp_ifs[] __initdata = { > &omap3xxx_sad2d__l3, > &omap3xxx_l4_core__mmu_isp, > &omap3xxx_l3_main__mmu_iva, > + &omap3xxx_l4_core__ssi, > NULL > }; > > -- > 2.7.0.rc3 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-omap" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html