diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-21 10:25:43 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-21 10:25:43 -0400 |
commit | 05ec7dd8dd5aa42c22a49682e4a51cadd4166b7e (patch) | |
tree | 6370b43c0d8f324aa7421bbb5a647aa04ab5d747 /drivers/mtd/maps/bfin-async-flash.c | |
parent | c316ba3b518bc35ce5aef5421135220389f4eb98 (diff) | |
parent | 8046112818b70329e930b1d4557ef0876c1ad2bb (diff) |
Merge git://git.infradead.org/mtd-2.6
* git://git.infradead.org/mtd-2.6: (154 commits)
mtd: cfi_cmdset_0002: use AMD standard command-set with Winbond flash chips
mtd: cfi_cmdset_0002: Fix MODULE_ALIAS and linkage for new 0701 commandset ID
mtd: mxc_nand: Remove duplicate NAND_CMD_RESET case value
mtd: update gfp/slab.h includes
jffs2: Stop triggering block erases from jffs2_write_super()
jffs2: Rename jffs2_erase_pending_trigger() to jffs2_dirty_trigger()
jffs2: Use jffs2_garbage_collect_trigger() to trigger pending erases
jffs2: Require jffs2_garbage_collect_trigger() to be called with lock held
jffs2: Wake GC thread when there are blocks to be erased
jffs2: Erase pending blocks in GC pass, avoid invalid -EIO return
jffs2: Add 'work_done' return value from jffs2_erase_pending_blocks()
mtd: mtdchar: Do not corrupt backing device of device node inode
mtd/maps/pcmciamtd: Fix printk format for ssize_t in debug messages
drivers/mtd: Use kmemdup
mtd: cfi_cmdset_0002: Fix argument order in bootloc warning
mtd: nand: add Toshiba TC58NVG0 device ID
pcmciamtd: add another ID
pcmciamtd: coding style cleanups
pcmciamtd: fixing obvious errors
mtd: chips: add SST39WF160x NOR-flashes
...
Trivial conflicts due to dev_node removal in drivers/mtd/maps/pcmciamtd.c
Diffstat (limited to 'drivers/mtd/maps/bfin-async-flash.c')
-rw-r--r-- | drivers/mtd/maps/bfin-async-flash.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/mtd/maps/bfin-async-flash.c b/drivers/mtd/maps/bfin-async-flash.c index c0fd99b0c525..85dd18193cf2 100644 --- a/drivers/mtd/maps/bfin-async-flash.c +++ b/drivers/mtd/maps/bfin-async-flash.c | |||
@@ -70,7 +70,7 @@ static void switch_back(struct async_state *state) | |||
70 | local_irq_restore(state->irq_flags); | 70 | local_irq_restore(state->irq_flags); |
71 | } | 71 | } |
72 | 72 | ||
73 | static map_word bfin_read(struct map_info *map, unsigned long ofs) | 73 | static map_word bfin_flash_read(struct map_info *map, unsigned long ofs) |
74 | { | 74 | { |
75 | struct async_state *state = (struct async_state *)map->map_priv_1; | 75 | struct async_state *state = (struct async_state *)map->map_priv_1; |
76 | uint16_t word; | 76 | uint16_t word; |
@@ -86,7 +86,7 @@ static map_word bfin_read(struct map_info *map, unsigned long ofs) | |||
86 | return test; | 86 | return test; |
87 | } | 87 | } |
88 | 88 | ||
89 | static void bfin_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len) | 89 | static void bfin_flash_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len) |
90 | { | 90 | { |
91 | struct async_state *state = (struct async_state *)map->map_priv_1; | 91 | struct async_state *state = (struct async_state *)map->map_priv_1; |
92 | 92 | ||
@@ -97,7 +97,7 @@ static void bfin_copy_from(struct map_info *map, void *to, unsigned long from, s | |||
97 | switch_back(state); | 97 | switch_back(state); |
98 | } | 98 | } |
99 | 99 | ||
100 | static void bfin_write(struct map_info *map, map_word d1, unsigned long ofs) | 100 | static void bfin_flash_write(struct map_info *map, map_word d1, unsigned long ofs) |
101 | { | 101 | { |
102 | struct async_state *state = (struct async_state *)map->map_priv_1; | 102 | struct async_state *state = (struct async_state *)map->map_priv_1; |
103 | uint16_t d; | 103 | uint16_t d; |
@@ -112,7 +112,7 @@ static void bfin_write(struct map_info *map, map_word d1, unsigned long ofs) | |||
112 | switch_back(state); | 112 | switch_back(state); |
113 | } | 113 | } |
114 | 114 | ||
115 | static void bfin_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len) | 115 | static void bfin_flash_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len) |
116 | { | 116 | { |
117 | struct async_state *state = (struct async_state *)map->map_priv_1; | 117 | struct async_state *state = (struct async_state *)map->map_priv_1; |
118 | 118 | ||
@@ -141,10 +141,10 @@ static int __devinit bfin_flash_probe(struct platform_device *pdev) | |||
141 | return -ENOMEM; | 141 | return -ENOMEM; |
142 | 142 | ||
143 | state->map.name = DRIVER_NAME; | 143 | state->map.name = DRIVER_NAME; |
144 | state->map.read = bfin_read; | 144 | state->map.read = bfin_flash_read; |
145 | state->map.copy_from = bfin_copy_from; | 145 | state->map.copy_from = bfin_flash_copy_from; |
146 | state->map.write = bfin_write; | 146 | state->map.write = bfin_flash_write; |
147 | state->map.copy_to = bfin_copy_to; | 147 | state->map.copy_to = bfin_flash_copy_to; |
148 | state->map.bankwidth = pdata->width; | 148 | state->map.bankwidth = pdata->width; |
149 | state->map.size = memory->end - memory->start + 1; | 149 | state->map.size = memory->end - memory->start + 1; |
150 | state->map.virt = (void __iomem *)memory->start; | 150 | state->map.virt = (void __iomem *)memory->start; |