[MTD] remove private wrapper of endian helpers in rfd_ftl.c
Linux-MTD Mailing List
linux-mtd at lists.infradead.org
Wed Dec 10 12:59:02 EST 2008
Gitweb: http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=c80a7b265fedef584a1bb8baf92a5b289a66e039
Commit: c80a7b265fedef584a1bb8baf92a5b289a66e039
Parent: 0bc4382ae901311fe53be5735026cbe3ea6f235f
Author: Harvey Harrison <harvey.harrison at gmail.com>
AuthorDate: Wed Nov 26 13:12:50 2008 -0800
Committer: David Woodhouse <David.Woodhouse at intel.com>
CommitDate: Wed Dec 10 15:39:09 2008 +0000
[MTD] remove private wrapper of endian helpers in rfd_ftl.c
Base versions handle constant folding just fine.
Signed-off-by: Harvey Harrison <harvey.harrison at gmail.com>
Signed-off-by: David Woodhouse <David.Woodhouse at intel.com>
---
drivers/mtd/rfd_ftl.c | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/drivers/mtd/rfd_ftl.c b/drivers/mtd/rfd_ftl.c
index 490b474..d2aa9c4 100644
--- a/drivers/mtd/rfd_ftl.c
+++ b/drivers/mtd/rfd_ftl.c
@@ -21,8 +21,6 @@
#include <asm/types.h>
-#define const_cpu_to_le16 __constant_cpu_to_le16
-
static int block_size = 0;
module_param(block_size, int, 0);
MODULE_PARM_DESC(block_size, "Block size to use by RFD, defaults to erase unit size");
@@ -298,7 +296,7 @@ static void erase_callback(struct erase_info *erase)
return;
}
- magic = const_cpu_to_le16(RFD_MAGIC);
+ magic = cpu_to_le16(RFD_MAGIC);
part->blocks[i].state = BLOCK_ERASED;
part->blocks[i].free_sectors = part->data_sectors_per_block;
@@ -588,7 +586,7 @@ static int mark_sector_deleted(struct partition *part, u_long old_addr)
int block, offset, rc;
u_long addr;
size_t retlen;
- u16 del = const_cpu_to_le16(SECTOR_DELETED);
+ u16 del = cpu_to_le16(SECTOR_DELETED);
block = old_addr / part->block_size;
offset = (old_addr % part->block_size) / SECTOR_SIZE -
More information about the linux-mtd-cvs
mailing list