aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mtd/map.h
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@tglx.tec.linutronix.de>2005-05-25 12:32:37 +0200
committerThomas Gleixner <tglx@mtd.linutronix.de>2005-05-25 12:32:37 +0200
commita8aff8ab981cc8ef170e89d85094da722644a7fd (patch)
treef49bdc805ab0230559df6b93131bf78ecbd63b87 /include/linux/mtd/map.h
parent[MTD] map.h Use the correct macro and fix the resulting compiler warning (diff)
downloadlinux-dev-a8aff8ab981cc8ef170e89d85094da722644a7fd.tar.xz
linux-dev-a8aff8ab981cc8ef170e89d85094da722644a7fd.zip
[MTD] Fix it really
tglx declares him self to be the idiot of the day. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/mtd/map.h')
-rw-r--r--include/linux/mtd/map.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/mtd/map.h b/include/linux/mtd/map.h
index dbd7b9b510d3..142963f01d29 100644
--- a/include/linux/mtd/map.h
+++ b/include/linux/mtd/map.h
@@ -1,6 +1,6 @@
/* Overhauled routines for dealing with different mmap regions of flash */
-/* $Id: map.h,v 1.51 2005/05/25 10:15:29 gleixner Exp $ */
+/* $Id: map.h,v 1.52 2005/05/25 10:29:41 gleixner Exp $ */
#ifndef __LINUX_MTD_MAP_H__
#define __LINUX_MTD_MAP_H__
@@ -352,7 +352,7 @@ static inline map_word map_word_ff(struct map_info *map)
int i;
if (map_bankwidth(map) < MAP_FF_LIMIT) {
- int bw = 8 * map_bankwidth;
+ int bw = 8 * map_bankwidth(map);
r.x[0] = (1 << bw) - 1;
} else {
for (i=0; i<map_words(map); i++)