diff options
| author | Simon Glass <sjg@chromium.org> | 2013-03-11 06:08:03 +0000 | 
|---|---|---|
| committer | Simon Glass <sjg@chromium.org> | 2013-03-19 08:45:36 -0700 | 
| commit | c0f87dd4ffa0c012d1dc8f737412c58200a93c93 (patch) | |
| tree | ad8bc5cfdeac09a81bde0f16626b0625d7bcc836 /drivers/mtd/spi/eon.c | |
| parent | b5aec1424d191c51f694ba85d5577e7a635363d9 (diff) | |
| download | olio-uboot-2014.01-c0f87dd4ffa0c012d1dc8f737412c58200a93c93.tar.xz olio-uboot-2014.01-c0f87dd4ffa0c012d1dc8f737412c58200a93c93.zip | |
sf: Use spi_flash_alloc() in each SPI flash driver
Rather than each device having its own way to allocate a SPI flash
structure, use the new allocation function everywhere. This will make it
easier to extend the interface without breaking devices.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/mtd/spi/eon.c')
| -rw-r--r-- | drivers/mtd/spi/eon.c | 8 | 
1 files changed, 1 insertions, 7 deletions
| diff --git a/drivers/mtd/spi/eon.c b/drivers/mtd/spi/eon.c index 691ed4efc..b16e7ab09 100644 --- a/drivers/mtd/spi/eon.c +++ b/drivers/mtd/spi/eon.c @@ -46,18 +46,12 @@ struct spi_flash *spi_flash_probe_eon(struct spi_slave *spi, u8 *idcode)  		return NULL;  	} -	flash = malloc(sizeof(*flash)); +	flash = spi_flash_alloc_base(spi, params->name);  	if (!flash) {  		debug("SF: Failed to allocate memory\n");  		return NULL;  	} -	flash->spi = spi; -	flash->name = params->name; - -	flash->write = spi_flash_cmd_write_multi; -	flash->erase = spi_flash_cmd_erase; -	flash->read = spi_flash_cmd_read_fast;  	flash->page_size = 256;  	flash->sector_size = 256 * 16 * 16;  	flash->size = 256 * 16 |