Skip to content

Commit

Permalink
[PATCH] more s/fucn/func/ typo fixes
Browse files Browse the repository at this point in the history
s/fucntion/function/ typo fixes

Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Akinobu Mita authored and Linus Torvalds committed Mar 26, 2006
1 parent 0f7217f commit 0b28002
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2836,7 +2836,7 @@ struct _snd_pcm_runtime {

<para>
Note that this callback became non-atomic since the recent version.
You can use schedule-related fucntions safely in this callback now.
You can use schedule-related functions safely in this callback now.
</para>

<para>
Expand Down
2 changes: 1 addition & 1 deletion arch/m68k/bvme6000/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ void __init config_bvme6000(void)
/* Now do the PIT configuration */

pit->pgcr = 0x00; /* Unidirectional 8 bit, no handshake for now */
pit->psrr = 0x18; /* PIACK and PIRQ fucntions enabled */
pit->psrr = 0x18; /* PIACK and PIRQ functions enabled */
pit->pacr = 0x00; /* Sub Mode 00, H2 i/p, no DMA */
pit->padr = 0x00; /* Just to be tidy! */
pit->paddr = 0x00; /* All inputs for now (safest) */
Expand Down
2 changes: 1 addition & 1 deletion arch/s390/crypto/crypt_s390_query.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ static void query_available_functions(void)
printk(KERN_INFO "KMC_AES_256: %d\n",
crypt_s390_func_available(KMC_AES_256_ENCRYPT));

/* query available KIMD fucntions */
/* query available KIMD functions */
printk(KERN_INFO "KIMD_QUERY: %d\n",
crypt_s390_func_available(KIMD_QUERY));
printk(KERN_INFO "KIMD_SHA_1: %d\n",
Expand Down
2 changes: 1 addition & 1 deletion drivers/acpi/processor_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ static int acpi_processor_errata(struct acpi_processor *pr)
}

/* --------------------------------------------------------------------------
Common ACPI processor fucntions
Common ACPI processor functions
-------------------------------------------------------------------------- */

/*
Expand Down
4 changes: 2 additions & 2 deletions drivers/net/sis900.c
Original file line number Diff line number Diff line change
Expand Up @@ -1693,7 +1693,7 @@ static irqreturn_t sis900_interrupt(int irq, void *dev_instance, struct pt_regs
*
* Process receive interrupt events,
* put buffer to higher layer and refill buffer pool
* Note: This fucntion is called by interrupt handler,
* Note: This function is called by interrupt handler,
* don't do "too much" work here
*/

Expand Down Expand Up @@ -1840,7 +1840,7 @@ static int sis900_rx(struct net_device *net_dev)
*
* Check for error condition and free socket buffer etc
* schedule for more transmission as needed
* Note: This fucntion is called by interrupt handler,
* Note: This function is called by interrupt handler,
* don't do "too much" work here
*/

Expand Down
4 changes: 2 additions & 2 deletions include/linux/gameport.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ static inline void gameport_set_name(struct gameport *gameport, const char *name
}

/*
* Use the following fucntions to manipulate gameport's per-port
* Use the following functions to manipulate gameport's per-port
* driver-specific data.
*/
static inline void *gameport_get_drvdata(struct gameport *gameport)
Expand All @@ -133,7 +133,7 @@ static inline void gameport_set_drvdata(struct gameport *gameport, void *data)
}

/*
* Use the following fucntions to pin gameport's driver in process context
* Use the following functions to pin gameport's driver in process context
*/
static inline int gameport_pin_driver(struct gameport *gameport)
{
Expand Down
6 changes: 3 additions & 3 deletions include/linux/serio.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ static inline void serio_cleanup(struct serio *serio)
}

/*
* Use the following fucntions to manipulate serio's per-port
* Use the following functions to manipulate serio's per-port
* driver-specific data.
*/
static inline void *serio_get_drvdata(struct serio *serio)
Expand All @@ -133,7 +133,7 @@ static inline void serio_set_drvdata(struct serio *serio, void *data)
}

/*
* Use the following fucntions to protect critical sections in
* Use the following functions to protect critical sections in
* driver code from port's interrupt handler
*/
static inline void serio_pause_rx(struct serio *serio)
Expand All @@ -147,7 +147,7 @@ static inline void serio_continue_rx(struct serio *serio)
}

/*
* Use the following fucntions to pin serio's driver in process context
* Use the following functions to pin serio's driver in process context
*/
static inline int serio_pin_driver(struct serio *serio)
{
Expand Down

0 comments on commit 0b28002

Please sign in to comment.