]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/tws.h
arc: hard-code CONFIG_ARCH_EARLY_INIT_R in asm/config.h
[people/ms/u-boot.git] / include / tws.h
CommitLineData
572e6179
DZ
1/*
2 * (C) Copyright 2009
3 * Detlev Zundel, DENX Software Engineering, dzu@denx.de.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
572e6179
DZ
6 */
7
8#ifndef _TWS_H_
9#define _TWS_H_
10
11/*
12 * Read/Write interface:
13 * buffer: Where to read/write the data
14 * len: How many bits to read/write
15 *
16 * Returns: 0 on success, not 0 on failure
17 */
18int tws_read(uchar *buffer, int len);
19int tws_write(uchar *buffer, int len);
20
21#endif /* _TWS_H_ */