From owner-svn-src-all@FreeBSD.ORG Wed Apr 17 11:47:33 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A0F51DD6; Wed, 17 Apr 2013 11:47:33 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 833351CF; Wed, 17 Apr 2013 11:47:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r3HBlXgc079087; Wed, 17 Apr 2013 11:47:33 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r3HBlWbP079078; Wed, 17 Apr 2013 11:47:32 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201304171147.r3HBlWbP079078@svn.freebsd.org> From: Gabor Kovesdan Date: Wed, 17 Apr 2013 11:47:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r249586 - in head/sys: arm/ti/omap4 dev/isci/scil dev/mxge pc98/pc98 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Apr 2013 11:47:33 -0000 Author: gabor Date: Wed Apr 17 11:47:32 2013 New Revision: 249586 URL: http://svnweb.freebsd.org/changeset/base/249586 Log: - Correct mispellings of word resource Submitted by: Christoph Mallon Modified: head/sys/arm/ti/omap4/omap4_prcm_clks.c head/sys/dev/isci/scil/scic_sds_phy.c head/sys/dev/isci/scil/scic_sds_port.c head/sys/dev/isci/scil/scic_sds_port_configuration_agent.c head/sys/dev/mxge/if_mxge.c head/sys/pc98/pc98/canbus.c Modified: head/sys/arm/ti/omap4/omap4_prcm_clks.c ============================================================================== --- head/sys/arm/ti/omap4/omap4_prcm_clks.c Wed Apr 17 11:45:15 2013 (r249585) +++ head/sys/arm/ti/omap4/omap4_prcm_clks.c Wed Apr 17 11:47:32 2013 (r249586) @@ -1003,7 +1003,7 @@ omap4_clk_get_arm_fclk_freq(struct ti_cl /** * omap4_clk_hsusbhost_activate - activates the USB clocks for the given module * @clkdev: pointer to the clock device structure. - * @mem_res: array of memory resouces allocated by the top level PRCM driver. + * @mem_res: array of memory resources allocated by the top level PRCM driver. * * The USB clocking setup seems to be a bit more tricky than the other modules, * to start with the clocking diagram for the HS host module shows 13 different @@ -1153,7 +1153,7 @@ omap4_clk_hsusbhost_activate(struct ti_c /** * omap4_clk_generic_deactivate - checks if a module is accessible * @clkdev: pointer to the clock device structure. - * @mem_res: array of memory resouces allocated by the top level PRCM driver. + * @mem_res: array of memory resources allocated by the top level PRCM driver. * * * @@ -1242,7 +1242,7 @@ omap4_clk_hsusbhost_deactivate(struct ti /** * omap4_clk_hsusbhost_accessible - checks if a module is accessible * @clkdev: pointer to the clock device structure. - * @mem_res: array of memory resouces allocated by the top level PRCM driver. + * @mem_res: array of memory resources allocated by the top level PRCM driver. * * * @@ -1291,7 +1291,7 @@ omap4_clk_hsusbhost_accessible(struct ti * omap4_clk_hsusbhost_set_source - sets the source clocks * @clkdev: pointer to the clock device structure. * @clksrc: the clock source ID for the given clock. - * @mem_res: array of memory resouces allocated by the top level PRCM driver. + * @mem_res: array of memory resources allocated by the top level PRCM driver. * * * Modified: head/sys/dev/isci/scil/scic_sds_phy.c ============================================================================== --- head/sys/dev/isci/scil/scic_sds_phy.c Wed Apr 17 11:45:15 2013 (r249585) +++ head/sys/dev/isci/scil/scic_sds_phy.c Wed Apr 17 11:47:32 2013 (r249586) @@ -975,7 +975,7 @@ void scic_sds_phy_get_attached_phy_proto * * @param[in] controller This parameter specifies the core controller, one of * its phy's resources are to be released. - * @param[in] this_phy This parameter specifies the phy whose resourse is to + * @param[in] this_phy This parameter specifies the phy whose resource is to * be released. */ void scic_sds_phy_release_resource( Modified: head/sys/dev/isci/scil/scic_sds_port.c ============================================================================== --- head/sys/dev/isci/scil/scic_sds_port.c Wed Apr 17 11:45:15 2013 (r249585) +++ head/sys/dev/isci/scil/scic_sds_port.c Wed Apr 17 11:47:32 2013 (r249586) @@ -1537,7 +1537,7 @@ void scic_port_enable_broadcast_change_n * * @param[in] controller This parameter specifies the core controller, one of * its phy's resources are to be released. - * @param[in] this_port This parameter specifies the port whose resourse is to + * @param[in] this_port This parameter specifies the port whose resource is to * be released. */ void scic_sds_port_release_resource( Modified: head/sys/dev/isci/scil/scic_sds_port_configuration_agent.c ============================================================================== --- head/sys/dev/isci/scil/scic_sds_port_configuration_agent.c Wed Apr 17 11:45:15 2013 (r249585) +++ head/sys/dev/isci/scil/scic_sds_port_configuration_agent.c Wed Apr 17 11:47:32 2013 (r249586) @@ -1109,7 +1109,7 @@ void scic_sds_port_configuration_agent_d * * @param[in] controller This parameter specifies the core controller, one of * its phy's resources are to be released. - * @param[in] this_phy This parameter specifies the phy whose resourse is to + * @param[in] this_phy This parameter specifies the phy whose resource is to * be released. */ void scic_sds_port_configuration_agent_release_resource( Modified: head/sys/dev/mxge/if_mxge.c ============================================================================== --- head/sys/dev/mxge/if_mxge.c Wed Apr 17 11:45:15 2013 (r249585) +++ head/sys/dev/mxge/if_mxge.c Wed Apr 17 11:47:32 2013 (r249586) @@ -3418,7 +3418,7 @@ mxge_alloc_slice_rings(struct mxge_slice return err; } - /* now allocate TX resouces */ + /* now allocate TX resources */ #ifndef IFNET_BUF_RING /* only use a single TX ring for now */ Modified: head/sys/pc98/pc98/canbus.c ============================================================================== --- head/sys/pc98/pc98/canbus.c Wed Apr 17 11:45:15 2013 (r249585) +++ head/sys/pc98/pc98/canbus.c Wed Apr 17 11:47:32 2013 (r249586) @@ -62,13 +62,13 @@ struct canbus_softc { /* index register */ int index_id; /* index ID */ - struct resource *index_res; /* index resouce */ + struct resource *index_res; /* index resource */ bus_space_tag_t index_tag; /* index tag */ bus_space_handle_t index_handle; /* index handle */ /* data register */ int data_id; /* data ID */ - struct resource *data_res; /* data resouce */ + struct resource *data_res; /* data resource */ bus_space_tag_t data_tag; /* data tag */ bus_space_handle_t data_handle; /* data handle */ };