[U-Boot] [PATCH V2 3/4] disk: define HAVE_BLOCK_DEVICE if CONFIG_CMD_PART

2013-02-28 Thread Stephen Warren
From: Stephen Warren Various code that is conditional upon HAVE_BLOCK_DEVICE is required by code conditional upon CONFIG_CMD_PART. So, enable HAVE_BLOCK_DEVICE if CONFIG_CMD_PART is enabled. Signed-off-by: Stephen Warren --- v2: New patch --- include/config_fallbacks.h |1 + 1 file changed

Re: [U-Boot] [PATCH V2 3/4] disk: define HAVE_BLOCK_DEVICE if CONFIG_CMD_PART

2013-03-02 Thread Simon Glass
On Thu, Feb 28, 2013 at 5:03 PM, Stephen Warren wrote: > From: Stephen Warren > > Various code that is conditional upon HAVE_BLOCK_DEVICE is required by > code conditional upon CONFIG_CMD_PART. So, enable HAVE_BLOCK_DEVICE if > CONFIG_CMD_PART is enabled. > > Signed-off-by: Stephen Warren Acked

Re: [U-Boot] [PATCH V2 3/4] disk: define HAVE_BLOCK_DEVICE if CONFIG_CMD_PART

2013-03-08 Thread Tom Rini
On Thu, Feb 28, 2013 at 06:03:47PM -0700, Stephen Warren wrote: > From: Stephen Warren > > Various code that is conditional upon HAVE_BLOCK_DEVICE is required by > code conditional upon CONFIG_CMD_PART. So, enable HAVE_BLOCK_DEVICE if > CONFIG_CMD_PART is enabled. > > Signed-off-by: Stephen War