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