mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
c5b88f29ba
0efc024
("spi_flash: Add spi_flash_probe_fdt() to locate SPI by FDT node") added a helper function spi_base_setup_slave_fdt to to set up a SPI slave from a given FDT blob. The only user was the exynos SPI driver. But commit73186c9
("dm: exynos: Convert SPI to driver model") removed the use of this function, hence rendering it obsolete. Remove this function, as well as the CONFIG_OF_SPI option, which guarded only this function. Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Jagan Teki <jagan@openedev.com> Signed-off-by: Mario Six <mario.six@gdsys.cc>
41 lines
716 B
C
41 lines
716 B
C
/*
|
|
* Copyright (c) 2011 The Chromium OS Authors.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <fdtdec.h>
|
|
#include <malloc.h>
|
|
#include <spi.h>
|
|
|
|
int spi_set_wordlen(struct spi_slave *slave, unsigned int wordlen)
|
|
{
|
|
if (wordlen == 0 || wordlen > 32) {
|
|
printf("spi: invalid wordlen %u\n", wordlen);
|
|
return -1;
|
|
}
|
|
|
|
slave->wordlen = wordlen;
|
|
|
|
return 0;
|
|
}
|
|
|
|
void *spi_do_alloc_slave(int offset, int size, unsigned int bus,
|
|
unsigned int cs)
|
|
{
|
|
u8 *ptr;
|
|
|
|
ptr = malloc(size);
|
|
if (ptr) {
|
|
struct spi_slave *slave;
|
|
|
|
memset(ptr, '\0', size);
|
|
slave = (struct spi_slave *)(ptr + offset);
|
|
slave->bus = bus;
|
|
slave->cs = cs;
|
|
slave->wordlen = SPI_DEFAULT_WORDLEN;
|
|
}
|
|
|
|
return ptr;
|
|
}
|