···33 * arbiter and sets up arbiter breakpoints.44 *55 * The algorithm first assigns slots to the clients that has specified66- * bandwith (e.g. ethernet) and then the remaining slots are divided66+ * bandwidth (e.g. ethernet) and then the remaining slots are divided77 * on all the active clients.88 *99 * Copyright (c) 2004-2007 Axis Communications AB.···282282 REG_WR_INT(marb_bar, regi_marb_bar, rw_l2cache_burst, 3);283283}284284285285-int crisv32_arbiter_allocate_bandwith(int client, int region,285285+int crisv32_arbiter_allocate_bandwidth(int client, int region,286286 unsigned long bandwidth)287287{288288 int i;···324324325325 /* Propagate allocation from foo to bar */326326 if (arbiter == 0)327327- crisv32_arbiter_allocate_bandwith(8 << 16,327327+ crisv32_arbiter_allocate_bandwidth(8 << 16,328328 EXT_REGION, bandwidth);329329 return 0;330330}
+1-1
arch/cris/arch-v32/mach-a3/dma.c
···2424 reg_clkgen_rw_clk_ctrl clk_ctrl;2525 reg_strmux_rw_cfg strmux_cfg;26262727- if (crisv32_arbiter_allocate_bandwith(dmanr,2727+ if (crisv32_arbiter_allocate_bandwidth(dmanr,2828 options & DMA_INT_MEM ? INT_REGION : EXT_REGION,2929 bandwidth))3030 return -ENOMEM;
+1-1
include/asm-cris/arch-v32/mach-a3/arbiter.h
···24242525#define MARB_CLIENTS(foo_cli, bar_cli) (((bar_cli) << 16) | (foo_cli))26262727-int crisv32_arbiter_allocate_bandwith(int client, int region,2727+int crisv32_arbiter_allocate_bandwidth(int client, int region,2828 unsigned long bandwidth);2929int crisv32_arbiter_watch(unsigned long start, unsigned long size,3030 unsigned long clients, unsigned long accesses,