]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
CRIS v32: Correct spelling of bandwidth in function name.
authorJesper Nilsson <jesper.nilsson@axis.com>
Fri, 8 Feb 2008 09:44:05 +0000 (10:44 +0100)
committerJesper Nilsson <jesper.nilsson@axis.com>
Fri, 8 Feb 2008 10:16:46 +0000 (11:16 +0100)
arch/cris/arch-v32/mach-a3/arbiter.c
arch/cris/arch-v32/mach-a3/dma.c
include/asm-cris/arch-v32/mach-a3/arbiter.h

index b92fd7eed3c494c9f4f669165bf8fc564bfef963..8b924db71c9a9a7f7eb90b6b6c13a1a387504a0a 100644 (file)
@@ -3,7 +3,7 @@
  * arbiter and sets up arbiter breakpoints.
  *
  * The algorithm first assigns slots to the clients that has specified
- * bandwith (e.g. ethernet) and then the remaining slots are divided
+ * bandwidth (e.g. ethernet) and then the remaining slots are divided
  * on all the active clients.
  *
  * Copyright (c) 2004-2007 Axis Communications AB.
@@ -282,7 +282,7 @@ static void crisv32_arbiter_init(void)
        REG_WR_INT(marb_bar, regi_marb_bar, rw_l2cache_burst, 3);
 }
 
-int crisv32_arbiter_allocate_bandwith(int client, int region,
+int crisv32_arbiter_allocate_bandwidth(int client, int region,
                                      unsigned long bandwidth)
 {
        int i;
@@ -324,7 +324,7 @@ int crisv32_arbiter_allocate_bandwith(int client, int region,
 
        /* Propagate allocation from foo to bar */
        if (arbiter == 0)
-               crisv32_arbiter_allocate_bandwith(8 << 16,
+               crisv32_arbiter_allocate_bandwidth(8 << 16,
                        EXT_REGION, bandwidth);
        return 0;
 }
index 0c19fede0e6575eca5c55dd77618e9a6045d4e25..25f236ef0b814d0297be0c1f92b395554814a8b3 100644 (file)
@@ -24,7 +24,7 @@ int crisv32_request_dma(unsigned int dmanr, const char *device_id,
        reg_clkgen_rw_clk_ctrl clk_ctrl;
        reg_strmux_rw_cfg strmux_cfg;
 
-       if (crisv32_arbiter_allocate_bandwith(dmanr,
+       if (crisv32_arbiter_allocate_bandwidth(dmanr,
                        options & DMA_INT_MEM ? INT_REGION : EXT_REGION,
                        bandwidth))
                return -ENOMEM;
index 50a89351e62b04df34a2a13567a08cff54a1c23c..65e9d6ff05208aa69deeab9bf38756b917a011d3 100644 (file)
@@ -24,7 +24,7 @@ enum {
 
 #define MARB_CLIENTS(foo_cli, bar_cli) (((bar_cli) << 16) | (foo_cli))
 
-int crisv32_arbiter_allocate_bandwith(int client, int region,
+int crisv32_arbiter_allocate_bandwidth(int client, int region,
                unsigned long bandwidth);
 int crisv32_arbiter_watch(unsigned long start, unsigned long size,
                unsigned long clients, unsigned long accesses,