* [PATCH] [Trivial] Make physmap messages more user friendly
@ 2005-10-14 1:07 Deepak Saxena
2005-10-18 23:34 ` Jörn Engel
0 siblings, 1 reply; 3+ messages in thread
From: Deepak Saxena @ 2005-10-14 1:07 UTC (permalink / raw)
To: linux-mtd
Can I commit the following to CVS? It makes the message a bit more
readalbe (and obvious that it is in hex) and tells the user if
the probe failed.
Signed-off-by: Deepak Saxena <dsaxena@plexity.net>
diff --git a/drivers/mtd/maps/physmap.c b/drivers/mtd/maps/physmap.c
--- a/drivers/mtd/maps/physmap.c
+++ b/drivers/mtd/maps/physmap.c
@@ -50,11 +50,12 @@ static int __init init_physmap(void)
static const char *rom_probe_types[] = { "cfi_probe", "jedec_probe", "map_rom", NULL };
const char **type;
- printk(KERN_NOTICE "physmap flash device: %lx at %lx\n", physmap_map.size, physmap_map.phys);
+ printk(KERN_NOTICE "MTD physmap flash device: %#010lx @ %#010lx\n",
+ physmap_map.size, physmap_map.phys);
physmap_map.virt = ioremap(physmap_map.phys, physmap_map.size);
if (!physmap_map.virt) {
- printk("Failed to ioremap\n");
+ printk("MTD physmap: Failed to ioremap\n");
return -EIO;
}
@@ -90,6 +91,8 @@ static int __init init_physmap(void)
add_mtd_device(mymtd);
return 0;
+ } else {
+ printk("MTD physmap: failed to probe flash\n");
}
iounmap(physmap_map.virt);
--
Deepak Saxena - dsaxena@plexity.net - http://www.plexity.net
Even a stopped clock gives the right time twice a day.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] [Trivial] Make physmap messages more user friendly
2005-10-14 1:07 [PATCH] [Trivial] Make physmap messages more user friendly Deepak Saxena
@ 2005-10-18 23:34 ` Jörn Engel
2005-10-19 6:37 ` Thomas Gleixner
0 siblings, 1 reply; 3+ messages in thread
From: Jörn Engel @ 2005-10-18 23:34 UTC (permalink / raw)
To: Deepak Saxena; +Cc: Thomas Gleixner, linux-mtd
On Thu, 13 October 2005 18:07:26 -0700, Deepak Saxena wrote:
>
> Can I commit the following to CVS? It makes the message a bit more
> readalbe (and obvious that it is in hex) and tells the user if
> the probe failed.
I'd like to wait until tglx considers cvs stable enough for a mainline
merge. Thomas, besides the general lack of time, are there any major
blockers left?
> Signed-off-by: Deepak Saxena <dsaxena@plexity.net>
>
> diff --git a/drivers/mtd/maps/physmap.c b/drivers/mtd/maps/physmap.c
> --- a/drivers/mtd/maps/physmap.c
> +++ b/drivers/mtd/maps/physmap.c
> @@ -50,11 +50,12 @@ static int __init init_physmap(void)
> static const char *rom_probe_types[] = { "cfi_probe", "jedec_probe", "map_rom", NULL };
> const char **type;
>
> - printk(KERN_NOTICE "physmap flash device: %lx at %lx\n", physmap_map.size, physmap_map.phys);
> + printk(KERN_NOTICE "MTD physmap flash device: %#010lx @ %#010lx\n",
> + physmap_map.size, physmap_map.phys);
> physmap_map.virt = ioremap(physmap_map.phys, physmap_map.size);
>
> if (!physmap_map.virt) {
> - printk("Failed to ioremap\n");
> + printk("MTD physmap: Failed to ioremap\n");
> return -EIO;
> }
>
> @@ -90,6 +91,8 @@ static int __init init_physmap(void)
> add_mtd_device(mymtd);
>
> return 0;
> + } else {
> + printk("MTD physmap: failed to probe flash\n");
^
All other messages were KERN_NOTICE.
> }
>
> iounmap(physmap_map.virt);
>
Jörn
--
Mundie uses a textbook tactic of manipulation: start with some
reasonable talk, and lead the audience to an unreasonable conclusion.
-- Bruce Perens
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] [Trivial] Make physmap messages more user friendly
2005-10-18 23:34 ` Jörn Engel
@ 2005-10-19 6:37 ` Thomas Gleixner
0 siblings, 0 replies; 3+ messages in thread
From: Thomas Gleixner @ 2005-10-19 6:37 UTC (permalink / raw)
To: Jörn Engel; +Cc: linux-mtd
On Wed, 2005-10-19 at 01:34 +0200, Jörn Engel wrote:
> On Thu, 13 October 2005 18:07:26 -0700, Deepak Saxena wrote:
> >
> > Can I commit the following to CVS? It makes the message a bit more
> > readalbe (and obvious that it is in hex) and tells the user if
> > the probe failed.
>
> I'd like to wait until tglx considers cvs stable enough for a mainline
> merge. Thomas, besides the general lack of time, are there any major
> blockers left?
Not that I'm aware of. I put it on the agenda for the weekend.
tglx
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2005-10-19 6:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-14 1:07 [PATCH] [Trivial] Make physmap messages more user friendly Deepak Saxena
2005-10-18 23:34 ` Jörn Engel
2005-10-19 6:37 ` Thomas Gleixner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox