[PATCH-mm 2/8] mtd: remove private wrapper of endian helpers

From: Harvey Harrison
Date: Wed Nov 26 2008 - 16:13:41 EST


Base versions handle constant folding just fine.

Signed-off-by: Harvey Harrison <harvey.harrison@xxxxxxxxx>
---
Depends on the byteorder consolidation in -mm.

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 e538c0a..3101815 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");
@@ -297,7 +295,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;
@@ -587,7 +585,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 -
--
1.6.0.4.1044.g77718


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/