* [PATCH 2.6.12] mtd: Remove MTD map file for Chestnut platform.
@ 2005-03-12 0:40 Mark A. Greer
2005-03-17 16:35 ` Jörn Engel
0 siblings, 1 reply; 5+ messages in thread
From: Mark A. Greer @ 2005-03-12 0:40 UTC (permalink / raw)
To: dwmw2; +Cc: linux-mtd, Embedded PPC Linux list
[-- Attachment #1: Type: text/plain, Size: 295 bytes --]
Remove Chestnut mtd map file.
The chestnut now sets up its MTD map from its platform-specific file so
the map file drivers/mtd/maps/chestnut.c is no longer needed. This
patch removes the file & the Kconfig/Makefile hooks.
Please apply.
Signed-off-by: Mark A. Greer <mgreer@mvista.com>
--
[-- Attachment #2: chestnut_mtd.patch --]
[-- Type: text/plain, Size: 3773 bytes --]
diff -Nru a/drivers/mtd/maps/Kconfig b/drivers/mtd/maps/Kconfig
--- a/drivers/mtd/maps/Kconfig 2005-03-11 14:51:08 -07:00
+++ b/drivers/mtd/maps/Kconfig 2005-03-11 14:51:08 -07:00
@@ -405,14 +405,6 @@
Redwood board. If you have one of these boards and would like to
use the flash chips on it, say 'Y'.
-config MTD_CHESTNUT
- tristate "CFI Flash devices mapped on IBM 750FX or IBM 750GX Eval Boards"
- depends on MTD_CFI && PPC32 && CHESTNUT && MTD_PARTITIONS
- help
- This enables access routines for the flash chips on the IBM
- 750FX and 750GX Eval Boards. If you have one of these boards and
- would like to use the flash chips on it, say 'Y'
-
config MTD_CSTM_MIPS_IXX
tristate "Flash chip mapping on ITE QED-4N-S01B, Globespan IVR or custom board"
depends on MIPS && MTD_CFI && MTD_JEDECPROBE && MTD_PARTITIONS
diff -Nru a/drivers/mtd/maps/Makefile b/drivers/mtd/maps/Makefile
--- a/drivers/mtd/maps/Makefile 2005-03-11 14:51:08 -07:00
+++ b/drivers/mtd/maps/Makefile 2005-03-11 14:51:08 -07:00
@@ -54,7 +54,6 @@
obj-$(CONFIG_MTD_IMPA7) += impa7.o
obj-$(CONFIG_MTD_FORTUNET) += fortunet.o
obj-$(CONFIG_MTD_REDWOOD) += redwood.o
-obj-$(CONFIG_MTD_CHESTNUT) += chestnut.o
obj-$(CONFIG_MTD_UCLINUX) += uclinux.o
obj-$(CONFIG_MTD_NETtel) += nettel.o
obj-$(CONFIG_MTD_SCB2_FLASH) += scb2_flash.o
diff -Nru a/drivers/mtd/maps/chestnut.c b/drivers/mtd/maps/chestnut.c
--- a/drivers/mtd/maps/chestnut.c 2005-03-11 14:51:08 -07:00
+++ /dev/null Wed Dec 31 16:00:00 196900
@@ -1,91 +0,0 @@
-/*
- * drivers/mtd/maps/chestnut.c
- *
- * $Id: chestnut.c,v 1.1 2005/01/05 16:59:50 dwmw2 Exp $
- *
- * Flash map driver for IBM Chestnut (750FXGX Eval)
- *
- * Chose not to enable 8 bit flash as it contains the firmware and board
- * info. Thus only the 32bit flash is supported.
- *
- * Author: <source@mvista.com>
- *
- * 2004 (c) MontaVista Software, Inc. This file is licensed under
- * the terms of the GNU General Public License version 2. This program
- * is licensed "as is" without any warranty of any kind, whether express
- * or implied.
- */
-
-#include <linux/module.h>
-#include <linux/init.h>
-#include <linux/types.h>
-#include <linux/kernel.h>
-#include <asm/io.h>
-#include <linux/mtd/mtd.h>
-#include <linux/mtd/map.h>
-#include <linux/mtd/partitions.h>
-#include <platforms/chestnut.h>
-
-static struct map_info chestnut32_map = {
- .name = "User FS",
- .size = CHESTNUT_32BIT_SIZE,
- .bankwidth = 4,
- .phys = CHESTNUT_32BIT_BASE,
-};
-
-static struct mtd_partition chestnut32_partitions[] = {
- {
- .name = "User FS",
- .offset = 0,
- .size = CHESTNUT_32BIT_SIZE,
- }
-};
-
-static struct mtd_info *flash32;
-
-int __init init_chestnut(void)
-{
- /* 32-bit FLASH */
-
- chestnut32_map.virt = ioremap(chestnut32_map.phys, chestnut32_map.size);
-
- if (!chestnut32_map.virt) {
- printk(KERN_NOTICE "Failed to ioremap 32-bit flash\n");
- return -EIO;
- }
-
- simple_map_init(&chestnut32_map);
-
- flash32 = do_map_probe("cfi_probe", &chestnut32_map);
- if (flash32) {
- flash32->owner = THIS_MODULE;
- add_mtd_partitions(flash32, chestnut32_partitions,
- ARRAY_SIZE(chestnut32_partitions));
- } else {
- printk(KERN_NOTICE "map probe failed for 32-bit flash\n");
- return -ENXIO;
- }
-
- return 0;
-}
-
-static void __exit
-cleanup_chestnut(void)
-{
- if (flash32) {
- del_mtd_partitions(flash32);
- map_destroy(flash32);
- }
-
- if (chestnut32_map.virt) {
- iounmap((void *)chestnut32_map.virt);
- chestnut32_map.virt = 0;
- }
-}
-
-module_init(init_chestnut);
-module_exit(cleanup_chestnut);
-
-MODULE_DESCRIPTION("MTD map and partitions for IBM Chestnut (750fxgx Eval)");
-MODULE_AUTHOR("<source@mvista.com>");
-MODULE_LICENSE("GPL");
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2.6.12] mtd: Remove MTD map file for Chestnut platform.
2005-03-12 0:40 [PATCH 2.6.12] mtd: Remove MTD map file for Chestnut platform Mark A. Greer
@ 2005-03-17 16:35 ` Jörn Engel
2005-03-17 17:57 ` Mark A. Greer
0 siblings, 1 reply; 5+ messages in thread
From: Jörn Engel @ 2005-03-17 16:35 UTC (permalink / raw)
To: Mark A. Greer; +Cc: linux-mtd, dwmw2, Embedded PPC Linux list
On Fri, 11 March 2005 17:40:55 -0700, Mark A. Greer wrote:
>
> Remove Chestnut mtd map file.
>
> The chestnut now sets up its MTD map from its platform-specific file so
> the map file drivers/mtd/maps/chestnut.c is no longer needed. This
> patch removes the file & the Kconfig/Makefile hooks.
>
> Please apply.
Applied to mtd cvs. It will make its way to Linus eventually...
Thanks!
Jörn
--
Sometimes, asking the right question is already the answer.
-- Unknown
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2.6.12] mtd: Remove MTD map file for Chestnut platform.
2005-03-17 16:35 ` Jörn Engel
@ 2005-03-17 17:57 ` Mark A. Greer
2005-03-17 18:24 ` Josh Boyer
0 siblings, 1 reply; 5+ messages in thread
From: Mark A. Greer @ 2005-03-17 17:57 UTC (permalink / raw)
To: Jörn Engel; +Cc: linux-mtd, dwmw2, Embedded PPC Linux list
Jörn Engel wrote:
>On Fri, 11 March 2005 17:40:55 -0700, Mark A. Greer wrote:
>
>
>>Remove Chestnut mtd map file.
>>
>>The chestnut now sets up its MTD map from its platform-specific file so
>>the map file drivers/mtd/maps/chestnut.c is no longer needed. This
>>patch removes the file & the Kconfig/Makefile hooks.
>>
>>Please apply.
>>
>>
>
>Applied to mtd cvs. It will make its way to Linus eventually...
>
>Thanks!
>
>
Jörn,
Thanks for looking into this but Andrew has already pushed that through
from his end. (I had posted an earler patch with the map removal in it
before I broke it out and sent that part to you and the rest to Andrew
again.)
Sorry for wasting your time.
Mark
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2.6.12] mtd: Remove MTD map file for Chestnut platform.
2005-03-17 17:57 ` Mark A. Greer
@ 2005-03-17 18:24 ` Josh Boyer
2005-03-17 18:32 ` Jörn Engel
0 siblings, 1 reply; 5+ messages in thread
From: Josh Boyer @ 2005-03-17 18:24 UTC (permalink / raw)
To: Mark A. Greer; +Cc: linux-mtd, dwmw2, Embedded PPC Linux list
On Thu, 2005-03-17 at 10:57 -0700, Mark A. Greer wrote:
> Jörn Engel wrote:
> >
> >Applied to mtd cvs. It will make its way to Linus eventually...
> >
> >Thanks!
> >
> >
>
> Jörn,
>
> Thanks for looking into this but Andrew has already pushed that through
> from his end. (I had posted an earler patch with the map removal in it
> before I broke it out and sent that part to you and the rest to Andrew
> again.)
>
> Sorry for wasting your time.
Not a waste of time. It's been removed from MTD CVS so it doesn't
magically reappear later (or cause headaches when doing a merge).
Jörn meant that the next time the MTD BK tree is synced with Linus,
it'll show up. If it's already there, then no big deal :).
josh
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2.6.12] mtd: Remove MTD map file for Chestnut platform.
2005-03-17 18:24 ` Josh Boyer
@ 2005-03-17 18:32 ` Jörn Engel
0 siblings, 0 replies; 5+ messages in thread
From: Jörn Engel @ 2005-03-17 18:32 UTC (permalink / raw)
To: Josh Boyer; +Cc: dwmw2, linux-mtd, Mark A. Greer, Embedded PPC Linux list
On Thu, 17 March 2005 12:24:31 -0600, Josh Boyer wrote:
>
> Jörn meant that the next time the MTD BK tree is synced with Linus,
> it'll show up. If it's already there, then no big deal :).
Not for me at least. ;)
Bk could automatically detect if the same changeset went in through
different trees. From cvs, it may give dwmw2 a slight headache.
Jörn
--
tglx1 thinks that joern should get a (TM) for "Thinking Is Hard"
-- Thomas Gleixner
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2005-03-17 18:32 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-12 0:40 [PATCH 2.6.12] mtd: Remove MTD map file for Chestnut platform Mark A. Greer
2005-03-17 16:35 ` Jörn Engel
2005-03-17 17:57 ` Mark A. Greer
2005-03-17 18:24 ` Josh Boyer
2005-03-17 18:32 ` Jörn Engel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox