Re: [U-Boot] [PATCH V3 03/12] fs: don't pass NULL dev_desc to most filesystems

2014-01-31 Thread Simon Glass
Hi Stephen, On 27 January 2014 13:49, Stephen Warren swar...@wwwdotorg.org wrote: From: Stephen Warren swar...@nvidia.com FAT and ext4 expect that the passed in block device descriptor not be NULL. This causes problems on sandbox, where get_device_and_partition() succeeds for the host

[U-Boot] [PATCH V3 03/12] fs: don't pass NULL dev_desc to most filesystems

2014-01-27 Thread Stephen Warren
From: Stephen Warren swar...@nvidia.com FAT and ext4 expect that the passed in block device descriptor not be NULL. This causes problems on sandbox, where get_device_and_partition() succeeds for the host device, yet passes back a NULL device descriptor. Add special handling for this situation, so