We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a3ab48 commit b043569Copy full SHA for b043569
1 file changed
include/linux/mtd/map.h
@@ -1,6 +1,6 @@
1
2
/* Overhauled routines for dealing with different mmap regions of flash */
3
-/* $Id: map.h,v 1.49 2005/05/24 18:45:15 gleixner Exp $ */
+/* $Id: map.h,v 1.51 2005/05/25 10:15:29 gleixner Exp $ */
4
5
#ifndef __LINUX_MTD_MAP_H__
6
#define __LINUX_MTD_MAP_H__
@@ -351,8 +351,9 @@ static inline map_word map_word_ff(struct map_info *map)
351
map_word r;
352
int i;
353
354
- if (map_bank_width(map) < MAP_FF_LIMIT) {
355
- r.x[0] = (1 << (8*map_bank_width(map))) - 1;
+ if (map_bankwidth(map) < MAP_FF_LIMIT) {
+ int bw = 8 * map_bankwidth;
356
+ r.x[0] = (1 << bw) - 1;
357
} else {
358
for (i=0; i<map_words(map); i++)
359
r.x[i] = ~0UL;
0 commit comments