Commit 9aaeded72f923212e6d9d7b6b8e3830e983f323e

Authored by Adrian Bunk
1 parent 27ae4104b6

typo fixes: bandwith -> bandwidth

Signed-off-by: Adrian Bunk <bunk@stusta.de>

Showing 8 changed files with 14 additions and 14 deletions Side-by-side Diff

arch/cris/arch-v32/kernel/arbiter.c
1 1 /*
2   - * Memory arbiter functions. Allocates bandwith through the
  2 + * Memory arbiter functions. Allocates bandwidth through the
3 3 * arbiter and sets up arbiter breakpoints.
4 4 *
5 5 * The algorithm first assigns slots to the clients that has specified
6   - * bandwith (e.g. ethernet) and then the remaining slots are divided
  6 + * bandwidth (e.g. ethernet) and then the remaining slots are divided
7 7 * on all the active clients.
8 8 *
9 9 * Copyright (c) 2004, 2005 Axis Communications AB.
... ... @@ -133,8 +133,8 @@
133 133  
134 134  
135 135  
136   -int crisv32_arbiter_allocate_bandwith(int client, int region,
137   - unsigned long bandwidth)
  136 +int crisv32_arbiter_allocate_bandwidth(int client, int region,
  137 + unsigned long bandwidth)
138 138 {
139 139 int i;
140 140 int total_assigned = 0;
arch/cris/arch-v32/kernel/dma.c
... ... @@ -25,8 +25,8 @@
25 25 reg_config_rw_clk_ctrl clk_ctrl;
26 26 reg_strmux_rw_cfg strmux_cfg;
27 27  
28   - if (crisv32_arbiter_allocate_bandwith(dmanr,
29   - options & DMA_INT_MEM ? INT_REGION : EXT_REGION,
  28 + if (crisv32_arbiter_allocate_bandwidth(dmanr,
  29 + options & DMA_INT_MEM ? INT_REGION : EXT_REGION,
30 30 bandwidth))
31 31 return -ENOMEM;
32 32  
drivers/media/common/saa7146_hlp.c
... ... @@ -158,7 +158,7 @@
158 158 }
159 159  
160 160 /* the horizontal scaling increment controls the UV filter
161   - to reduce the bandwith to improve the display quality,
  161 + to reduce the bandwidth to improve the display quality,
162 162 so set it ... */
163 163 if ( xsci == 0x400)
164 164 pfuv = 0x00;
drivers/media/dvb/frontends/lgdt330x.c
... ... @@ -216,7 +216,7 @@
216 216 AGC_DELAY0, 0x07,
217 217 AGC_DELAY2, 0xfe,
218 218 /* Change the value of IAGCBW[15:8]
219   - of inner AGC loop filter bandwith */
  219 + of inner AGC loop filter bandwidth */
220 220 AGC_LOOP_BANDWIDTH0, 0x08,
221 221 AGC_LOOP_BANDWIDTH1, 0x9a
222 222 };
drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c
... ... @@ -43,7 +43,7 @@
43 43 is a bit braindead (no matching channel masks or no matching filter mask),
44 44 we won't support this - yet. it doesn't event support negative filters,
45 45 so the best way is maybe to keep TTUSB_HWSECTIONS undef'd and just
46   - parse TS data. USB bandwith will be a problem when having large
  46 + parse TS data. USB bandwidth will be a problem when having large
47 47 datastreams, especially for dvb-net, but hey, that's not my problem.
48 48  
49 49 TTUSB_DISEQC, TTUSB_TONE:
drivers/net/skfp/h/sba.h
... ... @@ -13,7 +13,7 @@
13 13 ******************************************************************************/
14 14  
15 15 /*
16   - * Synchronous Bandwith Allocation (SBA) structs
  16 + * Synchronous Bandwidth Allocation (SBA) structs
17 17 */
18 18  
19 19 #ifndef _SBA_
drivers/video/sis/init301.c
... ... @@ -8043,8 +8043,8 @@
8043 8043 SiS_SetCH700x(SiS_Pr,0x01,0x28);
8044 8044  
8045 8045 /* Set video bandwidth
8046   - High bandwith Luma composite video filter(S0=1)
8047   - low bandwith Luma S-video filter (S2-1=00)
  8046 + High bandwidth Luma composite video filter(S0=1)
  8047 + low bandwidth Luma S-video filter (S2-1=00)
8048 8048 disable peak filter in S-video channel (S3=0)
8049 8049 high bandwidth Chroma Filter (S5-4=11)
8050 8050 =00110001=0x31
include/asm-cris/arch-v32/arbiter.h
... ... @@ -20,8 +20,8 @@
20 20 arbiter_all_accesses = 0xff
21 21 };
22 22  
23   -int crisv32_arbiter_allocate_bandwith(int client, int region,
24   - unsigned long bandwidth);
  23 +int crisv32_arbiter_allocate_bandwidth(int client, int region,
  24 + unsigned long bandwidth);
25 25 int crisv32_arbiter_watch(unsigned long start, unsigned long size,
26 26 unsigned long clients, unsigned long accesses,
27 27 watch_callback* cb);