hc
2024-03-26 e9199a72d842cbda78ac614eee5db7cdaa6f2530
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright (C) 2009
 * Guennadi Liakhovetski, DENX Software Engineering, <lg@denx.de>
 *
 * SPDX-License-Identifier:    GPL-2.0+
 */
#ifndef _S6E63D6_H_
#define _S6E63D6_H_
 
struct s6e63d6 {
   unsigned int bus;
   unsigned int cs;
   unsigned int id;
   struct spi_slave *slave;
};
 
extern int s6e63d6_init(struct s6e63d6 *data);
extern int s6e63d6_index(struct s6e63d6 *data, u8 idx);
extern int s6e63d6_param(struct s6e63d6 *data, u16 param);
 
#endif