mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +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>
21 lines
428 B
C
21 lines
428 B
C
/*
|
|
* Copyright (C) 2013 Simon Guinot <simon.guinot@sequanux.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _LACIE_CPLD_GPI0_BUS_H
|
|
#define _LACIE_CPLD_GPI0_BUS_H
|
|
|
|
struct cpld_gpio_bus {
|
|
unsigned *addr;
|
|
unsigned num_addr;
|
|
unsigned *data;
|
|
unsigned num_data;
|
|
unsigned enable;
|
|
};
|
|
|
|
void cpld_gpio_bus_write(struct cpld_gpio_bus *cpld_gpio_bus,
|
|
unsigned addr, unsigned value);
|
|
|
|
#endif /* _LACIE_CPLD_GPI0_BUS_H */
|