]> Git Repo - J-u-boot.git/blob - include/tws.h
ARM: uniphier: make SPL optional for ARVv8 SoCs
[J-u-boot.git] / include / tws.h
1 /*
2  * (C) Copyright 2009
3  * Detlev Zundel, DENX Software Engineering, [email protected].
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
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  */
18 int tws_read(uchar *buffer, int len);
19 int tws_write(uchar *buffer, int len);
20
21 #endif  /* _TWS_H_ */
This page took 0.026415 seconds and 4 git commands to generate.