- Correct mispellings of word resource

Submitted by:	Christoph Mallon <christoph.mallon@gmx.de>
This commit is contained in:
Gabor Kovesdan 2013-04-17 11:47:32 +00:00
parent 8fb3bbe770
commit b78540b1c7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=249586
6 changed files with 10 additions and 10 deletions

View File

@ -1003,7 +1003,7 @@ omap4_clk_get_arm_fclk_freq(struct ti_clock_dev *clkdev,
/**
* 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_clock_dev *clkdev)
/**
* 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_clock_dev *clkdev)
/**
* 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_clock_dev *clkdev)
* 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.
*
*
*

View File

@ -975,7 +975,7 @@ void scic_sds_phy_get_attached_phy_protocols(
*
* @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(

View File

@ -1537,7 +1537,7 @@ void scic_port_enable_broadcast_change_notification(
*
* @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(

View File

@ -1109,7 +1109,7 @@ void scic_sds_port_configuration_agent_destroy(
*
* @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(

View File

@ -3418,7 +3418,7 @@ mxge_alloc_slice_rings(struct mxge_slice_state *ss, int rx_ring_entries,
return err;
}
/* now allocate TX resouces */
/* now allocate TX resources */
#ifndef IFNET_BUF_RING
/* only use a single TX ring for now */

View File

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