mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
1a4596601f
Signed-off-by: Wolfgang Denk <wd@denx.de> [trini: Fixup common/cmd_io.c] Signed-off-by: Tom Rini <trini@ti.com>
26 lines
443 B
C
26 lines
443 B
C
/*
|
|
* Copyright (c) 2011 The Chromium OS Authors.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <malloc.h>
|
|
#include <spi.h>
|
|
|
|
void *spi_do_alloc_slave(int offset, int size, unsigned int bus,
|
|
unsigned int cs)
|
|
{
|
|
struct spi_slave *slave;
|
|
void *ptr;
|
|
|
|
ptr = malloc(size);
|
|
if (ptr) {
|
|
memset(ptr, '\0', size);
|
|
slave = (struct spi_slave *)(ptr + offset);
|
|
slave->bus = bus;
|
|
slave->cs = cs;
|
|
}
|
|
|
|
return ptr;
|
|
}
|