* A few cleanups against Linus' master
@ 2010-05-06 3:39 Shinya Kuribayashi
2010-05-06 3:41 ` [PATCH] UBI: Fix s/then/than/ typos Shinya Kuribayashi
` (2 more replies)
0 siblings, 3 replies; 12+ messages in thread
From: Shinya Kuribayashi @ 2010-05-06 3:39 UTC (permalink / raw)
To: linux-mtd
Hi,
Noticed and fixed while learning UBI subsystems. As for comment fixes
a double-check by native speaker would be appricated.
p.s. UBI fixes can be squashed into one at your option, thanks.
Shinya Kuribayashi (3):
UBI: Fix s/then/than/ typos
UBI: Remaining typos and comments cleanups
mtd: Remove empty mtd/mtdbdi.c and mtd/internal.h files
drivers/mtd/ubi/Kconfig | 2 +-
drivers/mtd/ubi/io.c | 4 ++--
drivers/mtd/ubi/kapi.c | 6 +++---
drivers/mtd/ubi/scan.c | 4 ++--
drivers/mtd/ubi/vtbl.c | 4 ++--
drivers/mtd/ubi/wl.c | 2 +-
6 files changed, 11 insertions(+), 11 deletions(-)
delete mode 100644 drivers/mtd/internal.h
delete mode 100644 drivers/mtd/mtdbdi.c
--
Shinya Kuribayashi
Renesas Electronics
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH] UBI: Fix s/then/than/ typos 2010-05-06 3:39 A few cleanups against Linus' master Shinya Kuribayashi @ 2010-05-06 3:41 ` Shinya Kuribayashi 2010-05-06 6:33 ` Artem Bityutskiy 2010-05-06 6:47 ` Artem Bityutskiy 2010-05-06 3:42 ` [PATCH] UBI: Remaining typos and comments cleanups Shinya Kuribayashi 2010-05-06 3:43 ` [PATCH] mtd: Remove empty mtd/mtdbdi.c and mtd/internal.h files Shinya Kuribayashi 2 siblings, 2 replies; 12+ messages in thread From: Shinya Kuribayashi @ 2010-05-06 3:41 UTC (permalink / raw) To: Artem.Bityutskiy; +Cc: linux-mtd Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi.px@renesas.com> --- drivers/mtd/ubi/Kconfig | 2 +- drivers/mtd/ubi/io.c | 2 +- drivers/mtd/ubi/kapi.c | 6 +++--- drivers/mtd/ubi/scan.c | 4 ++-- drivers/mtd/ubi/wl.c | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/mtd/ubi/Kconfig b/drivers/mtd/ubi/Kconfig index 0a8c7ea..f702a16 100644 --- a/drivers/mtd/ubi/Kconfig +++ b/drivers/mtd/ubi/Kconfig @@ -27,7 +27,7 @@ config MTD_UBI_WL_THRESHOLD The default value should be OK for SLC NAND flashes, NOR flashes and other flashes which have eraseblock life-cycle 100000 or more. However, in case of MLC NAND flashes which typically have eraseblock - life-cycle less then 10000, the threshold should be lessened (e.g., + life-cycle less than 10000, the threshold should be lessened (e.g., to 128 or 256, although it does not have to be power of 2). config MTD_UBI_BEB_RESERVE diff --git a/drivers/mtd/ubi/io.c b/drivers/mtd/ubi/io.c index 533b1a4..016ec13 100644 --- a/drivers/mtd/ubi/io.c +++ b/drivers/mtd/ubi/io.c @@ -65,7 +65,7 @@ * * A: because when writing a sub-page, MTD still writes a full 2K page but the * bytes which are no relevant to the sub-page are 0xFF. So, basically, writing - * 4x512 sub-pages is 4 times slower then writing one 2KiB NAND page. Thus, we + * 4x512 sub-pages is 4 times slower than writing one 2KiB NAND page. Thus, we * prefer to use sub-pages only for EV and VID headers. * * As it was noted above, the VID header may start at a non-aligned offset. diff --git a/drivers/mtd/ubi/kapi.c b/drivers/mtd/ubi/kapi.c index 17f287d..69fa4ef 100644 --- a/drivers/mtd/ubi/kapi.c +++ b/drivers/mtd/ubi/kapi.c @@ -488,7 +488,7 @@ EXPORT_SYMBOL_GPL(ubi_leb_write); * * This function changes the contents of a logical eraseblock atomically. @buf * has to contain new logical eraseblock data, and @len - the length of the - * data, which has to be aligned. The length may be shorter then the logical + * data, which has to be aligned. The length may be shorter than the logical * eraseblock size, ant the logical eraseblock may be appended to more times * later on. This function guarantees that in case of an unclean reboot the old * contents is preserved. Returns zero in case of success and a negative error @@ -571,7 +571,7 @@ EXPORT_SYMBOL_GPL(ubi_leb_erase); * * This function un-maps logical eraseblock @lnum and schedules the * corresponding physical eraseblock for erasure, so that it will eventually be - * physically erased in background. This operation is much faster then the + * physically erased in background. This operation is much faster than the * erase operation. * * Unlike erase, the un-map operation does not guarantee that the logical @@ -590,7 +590,7 @@ EXPORT_SYMBOL_GPL(ubi_leb_erase); * * The main and obvious use-case of this function is when the contents of a * logical eraseblock has to be re-written. Then it is much more efficient to - * first un-map it, then write new data, rather then first erase it, then write + * first un-map it, then write new data, rather than first erase it, then write * new data. Note, once new data has been written to the logical eraseblock, * UBI guarantees that the old contents has gone forever. In other words, if an * unclean reboot happens after the logical eraseblock has been un-mapped and diff --git a/drivers/mtd/ubi/scan.c b/drivers/mtd/ubi/scan.c index dc5f688..aed19f3 100644 --- a/drivers/mtd/ubi/scan.c +++ b/drivers/mtd/ubi/scan.c @@ -231,7 +231,7 @@ static struct ubi_scan_volume *add_volume(struct ubi_scan_info *si, int vol_id, * case of success this function returns a positive value, in case of failure, a * negative error code is returned. The success return codes use the following * bits: - * o bit 0 is cleared: the first PEB (described by @seb) is newer then the + * o bit 0 is cleared: the first PEB (described by @seb) is newer than the * second PEB (described by @pnum and @vid_hdr); * o bit 0 is set: the second PEB is newer; * o bit 1 is cleared: no bit-flips were detected in the newer LEB; @@ -452,7 +452,7 @@ int ubi_scan_add_used(struct ubi_device *ubi, struct ubi_scan_info *si, if (cmp_res & 1) { /* - * This logical eraseblock is newer then the one + * This logical eraseblock is newer than the one * found earlier. */ err = validate_vid_hdr(vid_hdr, sv, pnum); diff --git a/drivers/mtd/ubi/wl.c b/drivers/mtd/ubi/wl.c index f64ddab..ee7b1d8 100644 --- a/drivers/mtd/ubi/wl.c +++ b/drivers/mtd/ubi/wl.c @@ -350,7 +350,7 @@ static void prot_queue_add(struct ubi_device *ubi, struct ubi_wl_entry *e) * @max: highest possible erase counter * * This function looks for a wear leveling entry with erase counter closest to - * @max and less then @max. + * @max and less than @max. */ static struct ubi_wl_entry *find_wl_entry(struct rb_root *root, int max) { -- 1.7.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH] UBI: Fix s/then/than/ typos 2010-05-06 3:41 ` [PATCH] UBI: Fix s/then/than/ typos Shinya Kuribayashi @ 2010-05-06 6:33 ` Artem Bityutskiy 2010-05-06 6:47 ` Artem Bityutskiy 1 sibling, 0 replies; 12+ messages in thread From: Artem Bityutskiy @ 2010-05-06 6:33 UTC (permalink / raw) To: Shinya Kuribayashi; +Cc: linux-mtd On Thu, 2010-05-06 at 12:41 +0900, Shinya Kuribayashi wrote: > Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi.px@renesas.com> > --- > drivers/mtd/ubi/Kconfig | 2 +- > drivers/mtd/ubi/io.c | 2 +- > drivers/mtd/ubi/kapi.c | 6 +++--- > drivers/mtd/ubi/scan.c | 4 ++-- > drivers/mtd/ubi/wl.c | 2 +- > 5 files changed, 8 insertions(+), 8 deletions(-) > > diff --git a/drivers/mtd/ubi/Kconfig b/drivers/mtd/ubi/Kconfig > index 0a8c7ea..f702a16 100644 Weird, but I cannot apply this patch. Could you please save it from the mailing list and try to apply? For me, all hunks fail: [dedekind@eru ubi-2.6]$ patch -p1 < ~/tmp/shinya1 patching file drivers/mtd/ubi/Kconfig Hunk #1 FAILED at 27. 1 out of 1 hunk FAILED -- saving rejects to file drivers/mtd/ubi/Kconfig.rej patching file drivers/mtd/ubi/io.c Hunk #1 FAILED at 65. 1 out of 1 hunk FAILED -- saving rejects to file drivers/mtd/ubi/io.c.rej patching file drivers/mtd/ubi/kapi.c Hunk #1 FAILED at 488. Hunk #2 FAILED at 571. Hunk #3 FAILED at 590. 3 out of 3 hunks FAILED -- saving rejects to file drivers/mtd/ubi/kapi.c.rej patching file drivers/mtd/ubi/scan.c Hunk #1 FAILED at 231. Hunk #2 FAILED at 452. 2 out of 2 hunks FAILED -- saving rejects to file drivers/mtd/ubi/scan.c.rej patching file drivers/mtd/ubi/wl.c Hunk #1 FAILED at 350. 1 out of 1 hunk FAILED -- saving rejects to file drivers/mtd/ubi/wl.c.rej -- Best Regards, Artem Bityutskiy (Артём Битюцкий) ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] UBI: Fix s/then/than/ typos 2010-05-06 3:41 ` [PATCH] UBI: Fix s/then/than/ typos Shinya Kuribayashi 2010-05-06 6:33 ` Artem Bityutskiy @ 2010-05-06 6:47 ` Artem Bityutskiy 2010-05-06 7:06 ` Shinya Kuribayashi 1 sibling, 1 reply; 12+ messages in thread From: Artem Bityutskiy @ 2010-05-06 6:47 UTC (permalink / raw) To: Shinya Kuribayashi; +Cc: linux-mtd On Thu, 2010-05-06 at 12:41 +0900, Shinya Kuribayashi wrote: > Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi.px@renesas.com> > --- > drivers/mtd/ubi/Kconfig | 2 +- > drivers/mtd/ubi/io.c | 2 +- > drivers/mtd/ubi/kapi.c | 6 +++--- > drivers/mtd/ubi/scan.c | 4 ++-- > drivers/mtd/ubi/wl.c | 2 +- > 5 files changed, 8 insertions(+), 8 deletions(-) > > diff --git a/drivers/mtd/ubi/Kconfig b/drivers/mtd/ubi/Kconfig > index 0a8c7ea..f702a16 100644 > --- a/drivers/mtd/ubi/Kconfig > +++ b/drivers/mtd/ubi/Kconfig > @@ -27,7 +27,7 @@ config MTD_UBI_WL_THRESHOLD > The default value should be OK for SLC NAND flashes, NOR flashes and > other flashes which have eraseblock life-cycle 100000 or more. > However, in case of MLC NAND flashes which typically have eraseblock > - life-cycle less then 10000, the threshold should be lessened (e.g., > + life-cycle less than 10000, the threshold should be lessened (e.g., > to 128 or 256, although it does not have to be power of 2). Thanks for the patches, but they really look corrupted. Could you please send applicable versions? -- Best Regards, Artem Bityutskiy (Артём Битюцкий) ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] UBI: Fix s/then/than/ typos 2010-05-06 6:47 ` Artem Bityutskiy @ 2010-05-06 7:06 ` Shinya Kuribayashi 2010-05-06 7:21 ` Artem Bityutskiy 0 siblings, 1 reply; 12+ messages in thread From: Shinya Kuribayashi @ 2010-05-06 7:06 UTC (permalink / raw) To: dedekind1; +Cc: linux-mtd On 5/6/2010 3:47 PM, Artem Bityutskiy wrote: > Thanks for the patches, but they really look corrupted. Could you please > send applicable versions? Ah, the culprit must be 'format=flowed'. Recently I've migrated to Thunderbird3 and this was my first patch submission to communities. Should have disabled that option, sorry for inconvenience! Will fix and resubmit a few hours later to wait for any feedbacks. -- Shinya Kuribayashi Renesas Electronics ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] UBI: Fix s/then/than/ typos 2010-05-06 7:06 ` Shinya Kuribayashi @ 2010-05-06 7:21 ` Artem Bityutskiy 2010-05-07 15:58 ` Mark Brown 0 siblings, 1 reply; 12+ messages in thread From: Artem Bityutskiy @ 2010-05-06 7:21 UTC (permalink / raw) To: Shinya Kuribayashi; +Cc: linux-mtd On Thu, 2010-05-06 at 16:06 +0900, Shinya Kuribayashi wrote: > On 5/6/2010 3:47 PM, Artem Bityutskiy wrote: > > Thanks for the patches, but they really look corrupted. Could you please > > send applicable versions? > > Ah, the culprit must be 'format=flowed'. Recently I've migrated to > Thunderbird3 and this was my first patch submission to communities. > Should have disabled that option, sorry for inconvenience! > > Will fix and resubmit a few hours later to wait for any feedbacks. AFAIK, format=flowed is just about displaying quoted text, not changing the contents. I also tried to use thunderbird in the past, but it is very unfrienly to patch submitters. So I switched to Evolution which is much better. But for sending patches git send-email is the tool to use in most of the cases, IMO. -- Best Regards, Artem Bityutskiy (Артём Битюцкий) ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] UBI: Fix s/then/than/ typos 2010-05-06 7:21 ` Artem Bityutskiy @ 2010-05-07 15:58 ` Mark Brown 0 siblings, 0 replies; 12+ messages in thread From: Mark Brown @ 2010-05-07 15:58 UTC (permalink / raw) To: Artem Bityutskiy; +Cc: Shinya Kuribayashi, linux-mtd On Thu, May 06, 2010 at 10:21:35AM +0300, Artem Bityutskiy wrote: > AFAIK, format=flowed is just about displaying quoted text, not changing > the contents. No, it affects all text - it allows the MUA to re-wrap text in paragraphs to fit within the display regardless of the original line wrapping. It's very useful for human languages but unfortunate for patches. ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH] UBI: Remaining typos and comments cleanups 2010-05-06 3:39 A few cleanups against Linus' master Shinya Kuribayashi 2010-05-06 3:41 ` [PATCH] UBI: Fix s/then/than/ typos Shinya Kuribayashi @ 2010-05-06 3:42 ` Shinya Kuribayashi 2010-05-06 9:26 ` Shinya Kuribayashi 2010-05-06 3:43 ` [PATCH] mtd: Remove empty mtd/mtdbdi.c and mtd/internal.h files Shinya Kuribayashi 2 siblings, 1 reply; 12+ messages in thread From: Shinya Kuribayashi @ 2010-05-06 3:42 UTC (permalink / raw) To: Artem.Bityutskiy; +Cc: linux-mtd Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi.px@renesas.com> --- drivers/mtd/ubi/io.c | 2 +- drivers/mtd/ubi/vtbl.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/mtd/ubi/io.c b/drivers/mtd/ubi/io.c index 016ec13..cd0bf57 100644 --- a/drivers/mtd/ubi/io.c +++ b/drivers/mtd/ubi/io.c @@ -64,7 +64,7 @@ * device, e.g., make @ubi->min_io_size = 512 in the example above? * * A: because when writing a sub-page, MTD still writes a full 2K page but the - * bytes which are no relevant to the sub-page are 0xFF. So, basically, writing + * bytes which are not relevant to the sub-page are 0xFF. So, basically, writing * 4x512 sub-pages is 4 times slower than writing one 2KiB NAND page. Thus, we * prefer to use sub-pages only for EV and VID headers. * diff --git a/drivers/mtd/ubi/vtbl.c b/drivers/mtd/ubi/vtbl.c index cd90ff3..14c10be 100644 --- a/drivers/mtd/ubi/vtbl.c +++ b/drivers/mtd/ubi/vtbl.c @@ -414,7 +414,7 @@ static struct ubi_vtbl_record *process_lvol(struct ubi_device *ubi, * 0 contains more recent information. * * So the plan is to first check LEB 0. Then - * a. if LEB 0 is OK, it must be containing the most resent data; then + * a. if LEB 0 is OK, it must be containing the most recent data; then * we compare it with LEB 1, and if they are different, we copy LEB * 0 to LEB 1; * b. if LEB 0 is corrupted, but LEB 1 has to be OK, and we copy LEB 1 @@ -848,7 +848,7 @@ int ubi_read_volume_table(struct ubi_device *ubi, struct ubi_scan_info *si) goto out_free; /* - * Get sure that the scanning information is consistent to the + * Make sure that the scanning information is consistent to the * information stored in the volume table. */ err = check_scanning_info(ubi, si); -- 1.7.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH] UBI: Remaining typos and comments cleanups 2010-05-06 3:42 ` [PATCH] UBI: Remaining typos and comments cleanups Shinya Kuribayashi @ 2010-05-06 9:26 ` Shinya Kuribayashi 2010-05-06 10:19 ` Artem Bityutskiy 0 siblings, 1 reply; 12+ messages in thread From: Shinya Kuribayashi @ 2010-05-06 9:26 UTC (permalink / raw) To: Artem.Bityutskiy; +Cc: linux-mtd Artem-san, On 5/6/2010 12:42 PM, Shinya Kuribayashi wrote: > diff --git a/drivers/mtd/ubi/io.c b/drivers/mtd/ubi/io.c > index 016ec13..cd0bf57 100644 > --- a/drivers/mtd/ubi/io.c > +++ b/drivers/mtd/ubi/io.c > @@ -64,7 +64,7 @@ > * device, e.g., make @ubi->min_io_size = 512 in the example above? > * > * A: because when writing a sub-page, MTD still writes a full 2K page but the > - * bytes which are no relevant to the sub-page are 0xFF. So, basically, writing > + * bytes which are not relevant to the sub-page are 0xFF. So, basically, writing > * 4x512 sub-pages is 4 times slower than writing one 2KiB NAND page. Thus, we > * prefer to use sub-pages only for EV and VID headers. > * ^^^^ Looking at the last line, I think above 'EV' is a typo of 'EC', right? I'll incorporate it in the next submission, -- Shinya Kuribayashi Renesas Electronics ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] UBI: Remaining typos and comments cleanups 2010-05-06 9:26 ` Shinya Kuribayashi @ 2010-05-06 10:19 ` Artem Bityutskiy 0 siblings, 0 replies; 12+ messages in thread From: Artem Bityutskiy @ 2010-05-06 10:19 UTC (permalink / raw) To: Shinya Kuribayashi; +Cc: linux-mtd On Thu, 2010-05-06 at 18:26 +0900, Shinya Kuribayashi wrote: > Artem-san, > > On 5/6/2010 12:42 PM, Shinya Kuribayashi wrote: > > diff --git a/drivers/mtd/ubi/io.c b/drivers/mtd/ubi/io.c > > index 016ec13..cd0bf57 100644 > > --- a/drivers/mtd/ubi/io.c > > +++ b/drivers/mtd/ubi/io.c > > @@ -64,7 +64,7 @@ > > * device, e.g., make @ubi->min_io_size = 512 in the example above? > > * > > * A: because when writing a sub-page, MTD still writes a full 2K page but the > > - * bytes which are no relevant to the sub-page are 0xFF. So, basically, writing > > + * bytes which are not relevant to the sub-page are 0xFF. So, basically, writing > > * 4x512 sub-pages is 4 times slower than writing one 2KiB NAND page. Thus, we > > * prefer to use sub-pages only for EV and VID headers. > > * ^^^^ > > Looking at the last line, I think above 'EV' is a typo of 'EC', right? > I'll incorporate it in the next submission, Right -- Best Regards, Artem Bityutskiy (Артём Битюцкий) ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH] mtd: Remove empty mtd/mtdbdi.c and mtd/internal.h files 2010-05-06 3:39 A few cleanups against Linus' master Shinya Kuribayashi 2010-05-06 3:41 ` [PATCH] UBI: Fix s/then/than/ typos Shinya Kuribayashi 2010-05-06 3:42 ` [PATCH] UBI: Remaining typos and comments cleanups Shinya Kuribayashi @ 2010-05-06 3:43 ` Shinya Kuribayashi 2010-05-06 6:34 ` Artem Bityutskiy 2 siblings, 1 reply; 12+ messages in thread From: Shinya Kuribayashi @ 2010-05-06 3:43 UTC (permalink / raw) To: dwmw2; +Cc: Joern Engel, linux-mtd Commit a33eb6b9 (Move mtd_bdi_*mappable to mtdcore.c) forgot to 'git rm' these files. Cc: Joern Engel <joern@logfs.org> Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi.px@renesas.com> --- 0 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 drivers/mtd/internal.h delete mode 100644 drivers/mtd/mtdbdi.c diff --git a/drivers/mtd/internal.h b/drivers/mtd/internal.h deleted file mode 100644 index e69de29..0000000 diff --git a/drivers/mtd/mtdbdi.c b/drivers/mtd/mtdbdi.c deleted file mode 100644 index e69de29..0000000 -- 1.7.1 ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] mtd: Remove empty mtd/mtdbdi.c and mtd/internal.h files 2010-05-06 3:43 ` [PATCH] mtd: Remove empty mtd/mtdbdi.c and mtd/internal.h files Shinya Kuribayashi @ 2010-05-06 6:34 ` Artem Bityutskiy 0 siblings, 0 replies; 12+ messages in thread From: Artem Bityutskiy @ 2010-05-06 6:34 UTC (permalink / raw) To: Shinya Kuribayashi; +Cc: linux-mtd, Joern Engel, dwmw2 On Thu, 2010-05-06 at 12:43 +0900, Shinya Kuribayashi wrote: > Commit a33eb6b9 (Move mtd_bdi_*mappable to mtdcore.c) forgot to 'git rm' > these files. > > Cc: Joern Engel <joern@logfs.org> > Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi.px@renesas.com> > --- > 0 files changed, 0 insertions(+), 0 deletions(-) > delete mode 100644 drivers/mtd/internal.h > delete mode 100644 drivers/mtd/mtdbdi.c > > diff --git a/drivers/mtd/internal.h b/drivers/mtd/internal.h > deleted file mode 100644 > index e69de29..0000000 > diff --git a/drivers/mtd/mtdbdi.c b/drivers/mtd/mtdbdi.c > deleted file mode 100644 > index e69de29..0000000 Jeff Garzik just sent a pull request which takes care of this. -- Best Regards, Artem Bityutskiy (Артём Битюцкий) ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2010-05-07 15:58 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2010-05-06 3:39 A few cleanups against Linus' master Shinya Kuribayashi 2010-05-06 3:41 ` [PATCH] UBI: Fix s/then/than/ typos Shinya Kuribayashi 2010-05-06 6:33 ` Artem Bityutskiy 2010-05-06 6:47 ` Artem Bityutskiy 2010-05-06 7:06 ` Shinya Kuribayashi 2010-05-06 7:21 ` Artem Bityutskiy 2010-05-07 15:58 ` Mark Brown 2010-05-06 3:42 ` [PATCH] UBI: Remaining typos and comments cleanups Shinya Kuribayashi 2010-05-06 9:26 ` Shinya Kuribayashi 2010-05-06 10:19 ` Artem Bityutskiy 2010-05-06 3:43 ` [PATCH] mtd: Remove empty mtd/mtdbdi.c and mtd/internal.h files Shinya Kuribayashi 2010-05-06 6:34 ` Artem Bityutskiy
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).