mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] omap: xload: Make error more specific
@ 2012-02-09 18:31 Sanjeev Premi
  2012-02-10 11:36 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Sanjeev Premi @ 2012-02-09 18:31 UTC (permalink / raw)
  To: barebox

Current message indicating that SD card isn't
mounted is misleading if the card has only one
partition.

Updated the message to indicate that mounting
the specific partition failed.

Signed-off-by: Sanjeev Premi <premi@ti.com>
---
 arch/arm/mach-omap/xload.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-omap/xload.c b/arch/arm/mach-omap/xload.c
index a52a8ba..bf7fd06 100644
--- a/arch/arm/mach-omap/xload.c
+++ b/arch/arm/mach-omap/xload.c
@@ -40,7 +40,7 @@ void *omap_xload_boot_mmc(void)
 
 	ret = mount("disk0.0", "fat", "/");
 	if (ret) {
-		printf("mounting sd card failed with %d\n", ret);
+		printf("Unable to mount disk0.0 (%d)\n", ret);
 		return NULL;
 	}
 
-- 
1.7.0.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] omap: xload: Make error more specific
  2012-02-09 18:31 [PATCH] omap: xload: Make error more specific Sanjeev Premi
@ 2012-02-10 11:36 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2012-02-10 11:36 UTC (permalink / raw)
  To: Sanjeev Premi; +Cc: barebox

On Fri, Feb 10, 2012 at 12:01:38AM +0530, Sanjeev Premi wrote:
> Current message indicating that SD card isn't
> mounted is misleading if the card has only one
> partition.
> 
> Updated the message to indicate that mounting
> the specific partition failed.
> 
> Signed-off-by: Sanjeev Premi <premi@ti.com>
> ---
>  arch/arm/mach-omap/xload.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/arm/mach-omap/xload.c b/arch/arm/mach-omap/xload.c
> index a52a8ba..bf7fd06 100644
> --- a/arch/arm/mach-omap/xload.c
> +++ b/arch/arm/mach-omap/xload.c
> @@ -40,7 +40,7 @@ void *omap_xload_boot_mmc(void)
>  
>  	ret = mount("disk0.0", "fat", "/");
>  	if (ret) {
> -		printf("mounting sd card failed with %d\n", ret);
> +		printf("Unable to mount disk0.0 (%d)\n", ret);

Small nitpick: Can we have a const char *diskdev = "disk0.0" and use
it for mount and error message? This makes sure we keep both in sync.

Sascha

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-02-10 11:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-09 18:31 [PATCH] omap: xload: Make error more specific Sanjeev Premi
2012-02-10 11:36 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox