diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-11-26 16:12:50 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-12-10 10:39:09 -0500 |
commit | c80a7b265fedef584a1bb8baf92a5b289a66e039 (patch) | |
tree | 572611bfb2a116b613e050e7664ba2b07641da9e /drivers/mtd/rfd_ftl.c | |
parent | 0bc4382ae901311fe53be5735026cbe3ea6f235f (diff) |
[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@gmail.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/rfd_ftl.c')
-rw-r--r-- | 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 490b4742ce3a..d2aa9c46530f 100644 --- a/drivers/mtd/rfd_ftl.c +++ b/drivers/mtd/rfd_ftl.c | |||
@@ -21,8 +21,6 @@ | |||
21 | 21 | ||
22 | #include <asm/types.h> | 22 | #include <asm/types.h> |
23 | 23 | ||
24 | #define const_cpu_to_le16 __constant_cpu_to_le16 | ||
25 | |||
26 | static int block_size = 0; | 24 | static int block_size = 0; |
27 | module_param(block_size, int, 0); | 25 | module_param(block_size, int, 0); |
28 | MODULE_PARM_DESC(block_size, "Block size to use by RFD, defaults to erase unit size"); | 26 | 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) | |||
298 | return; | 296 | return; |
299 | } | 297 | } |
300 | 298 | ||
301 | magic = const_cpu_to_le16(RFD_MAGIC); | 299 | magic = cpu_to_le16(RFD_MAGIC); |
302 | 300 | ||
303 | part->blocks[i].state = BLOCK_ERASED; | 301 | part->blocks[i].state = BLOCK_ERASED; |
304 | part->blocks[i].free_sectors = part->data_sectors_per_block; | 302 | 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) | |||
588 | int block, offset, rc; | 586 | int block, offset, rc; |
589 | u_long addr; | 587 | u_long addr; |
590 | size_t retlen; | 588 | size_t retlen; |
591 | u16 del = const_cpu_to_le16(SECTOR_DELETED); | 589 | u16 del = cpu_to_le16(SECTOR_DELETED); |
592 | 590 | ||
593 | block = old_addr / part->block_size; | 591 | block = old_addr / part->block_size; |
594 | offset = (old_addr % part->block_size) / SECTOR_SIZE - | 592 | offset = (old_addr % part->block_size) / SECTOR_SIZE - |