dm: sf: Update default name of spi flash in structure udevice

Default name of spi flash like this "0:0", update it to "spi_flash@0:0".

Signed-off-by: Haikun Wang <haikun.wang@freescale.com>
Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Haikun.Wang@freescale.com 2015-05-06 10:37:43 +08:00 committed by Simon Glass
parent f56da290b8
commit a5e1bcdeeb

View File

@ -53,10 +53,10 @@ int spi_flash_probe_bus_cs(unsigned int busnum, unsigned int cs,
{
struct spi_slave *slave;
struct udevice *bus;
char name[20], *str;
char name[30], *str;
int ret;
snprintf(name, sizeof(name), "%d:%d", busnum, cs);
snprintf(name, sizeof(name), "spi_flash@%d:%d", busnum, cs);
str = strdup(name);
ret = spi_get_bus_and_cs(busnum, cs, max_hz, spi_mode,
"spi_flash_std", str, &bus, &slave);