Skip to content

Commit bf48aab

Browse files
Uwe Kleine-KönigJiri Kosina
Uwe Kleine-König
authored and
Jiri Kosina
committed
tree-wide: fix typos "offest" -> "offset"
This patch was generated by git grep -E -i -l 'offest' | xargs -r perl -p -i -e 's/offest/offset/' Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
1 parent fb3d38b commit bf48aab

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

drivers/net/wireless/ath/ath5k/eeprom.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1492,7 +1492,7 @@ ath5k_eeprom_read_target_rate_pwr_info(struct ath5k_hw *ah, unsigned int mode)
14921492
* This info is used to calibrate the baseband power table. Imagine
14931493
* that for each channel there is a power curve that's hw specific
14941494
* (depends on amplifier etc) and we try to "correct" this curve using
1495-
* offests we pass on to phy chip (baseband -> before amplifier) so that
1495+
* offsets we pass on to phy chip (baseband -> before amplifier) so that
14961496
* it can use accurate power values when setting tx power (takes amplifier's
14971497
* performance on each channel into account).
14981498
*

fs/ext3/inode.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2026,7 +2026,7 @@ static Indirect *ext3_find_shared(struct inode *inode, int depth,
20262026
int k, err;
20272027

20282028
*top = 0;
2029-
/* Make k index the deepest non-null offest + 1 */
2029+
/* Make k index the deepest non-null offset + 1 */
20302030
for (k = depth; k > 1 && !offsets[k-1]; k--)
20312031
;
20322032
partial = ext3_get_branch(inode, k, offsets, chain, &err);

fs/ext4/inode.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -4058,7 +4058,7 @@ static Indirect *ext4_find_shared(struct inode *inode, int depth,
40584058
int k, err;
40594059

40604060
*top = 0;
4061-
/* Make k index the deepest non-null offest + 1 */
4061+
/* Make k index the deepest non-null offset + 1 */
40624062
for (k = depth; k > 1 && !offsets[k-1]; k--)
40634063
;
40644064
partial = ext4_get_branch(inode, k, offsets, chain, &err);

fs/ocfs2/blockcheck.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
* Calculate the bit offset in the hamming code buffer based on the bit's
4848
* offset in the data buffer. Since the hamming code reserves all
4949
* power-of-two bits for parity, the data bit number and the code bit
50-
* number are offest by all the parity bits beforehand.
50+
* number are offset by all the parity bits beforehand.
5151
*
5252
* Recall that bit numbers in hamming code are 1-based. This function
5353
* takes the 0-based data bit from the caller.

0 commit comments

Comments
 (0)