svn commit: r249586 - in head/sys: arm/ti/omap4 dev/isci/scil dev/mxge pc98/pc98

Gabor Kovesdan gabor at FreeBSD.org
Wed Apr 17 11:47:33 UTC 2013


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 <christoph.mallon at gmx.de>

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 */
 };


More information about the svn-src-head mailing list