1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /* Copyright (C) IBM Corporation 2023 */
4 #ifndef DRIVERS_FSI_SLAVE_H
5 #define DRIVERS_FSI_SLAVE_H
7 #include <linux/cdev.h>
8 #include <linux/device.h>
14 struct fsi_master
*master
;
17 int id
; /* FSI address */
18 int link
; /* FSI link# */
21 uint32_t size
; /* size of slave address space */
26 #define to_fsi_slave(d) container_of(d, struct fsi_slave, dev)
28 #endif /* DRIVERS_FSI_SLAVE_H */