CRIS v32: Correct spelling of bandwidth in function name.

+5 -5
+3 -3
arch/cris/arch-v32/mach-a3/arbiter.c
··· 3 * arbiter and sets up arbiter breakpoints. 4 * 5 * The algorithm first assigns slots to the clients that has specified 6 - * bandwith (e.g. ethernet) and then the remaining slots are divided 7 * on all the active clients. 8 * 9 * Copyright (c) 2004-2007 Axis Communications AB. ··· 282 REG_WR_INT(marb_bar, regi_marb_bar, rw_l2cache_burst, 3); 283 } 284 285 - int crisv32_arbiter_allocate_bandwith(int client, int region, 286 unsigned long bandwidth) 287 { 288 int i; ··· 324 325 /* Propagate allocation from foo to bar */ 326 if (arbiter == 0) 327 - crisv32_arbiter_allocate_bandwith(8 << 16, 328 EXT_REGION, bandwidth); 329 return 0; 330 }
··· 3 * arbiter and sets up arbiter breakpoints. 4 * 5 * The algorithm first assigns slots to the clients that has specified 6 + * bandwidth (e.g. ethernet) and then the remaining slots are divided 7 * on all the active clients. 8 * 9 * Copyright (c) 2004-2007 Axis Communications AB. ··· 282 REG_WR_INT(marb_bar, regi_marb_bar, rw_l2cache_burst, 3); 283 } 284 285 + int crisv32_arbiter_allocate_bandwidth(int client, int region, 286 unsigned long bandwidth) 287 { 288 int i; ··· 324 325 /* Propagate allocation from foo to bar */ 326 if (arbiter == 0) 327 + crisv32_arbiter_allocate_bandwidth(8 << 16, 328 EXT_REGION, bandwidth); 329 return 0; 330 }
+1 -1
arch/cris/arch-v32/mach-a3/dma.c
··· 24 reg_clkgen_rw_clk_ctrl clk_ctrl; 25 reg_strmux_rw_cfg strmux_cfg; 26 27 - if (crisv32_arbiter_allocate_bandwith(dmanr, 28 options & DMA_INT_MEM ? INT_REGION : EXT_REGION, 29 bandwidth)) 30 return -ENOMEM;
··· 24 reg_clkgen_rw_clk_ctrl clk_ctrl; 25 reg_strmux_rw_cfg strmux_cfg; 26 27 + if (crisv32_arbiter_allocate_bandwidth(dmanr, 28 options & DMA_INT_MEM ? INT_REGION : EXT_REGION, 29 bandwidth)) 30 return -ENOMEM;
+1 -1
include/asm-cris/arch-v32/mach-a3/arbiter.h
··· 24 25 #define MARB_CLIENTS(foo_cli, bar_cli) (((bar_cli) << 16) | (foo_cli)) 26 27 - int crisv32_arbiter_allocate_bandwith(int client, int region, 28 unsigned long bandwidth); 29 int crisv32_arbiter_watch(unsigned long start, unsigned long size, 30 unsigned long clients, unsigned long accesses,
··· 24 25 #define MARB_CLIENTS(foo_cli, bar_cli) (((bar_cli) << 16) | (foo_cli)) 26 27 + int crisv32_arbiter_allocate_bandwidth(int client, int region, 28 unsigned long bandwidth); 29 int crisv32_arbiter_watch(unsigned long start, unsigned long size, 30 unsigned long clients, unsigned long accesses,