diff options
Diffstat (limited to 'roms/skiboot/include/sfc-ctrl.h')
-rw-r--r-- | roms/skiboot/include/sfc-ctrl.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/roms/skiboot/include/sfc-ctrl.h b/roms/skiboot/include/sfc-ctrl.h new file mode 100644 index 000000000..d3889bbd0 --- /dev/null +++ b/roms/skiboot/include/sfc-ctrl.h @@ -0,0 +1,12 @@ +// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later +/* Copyright 2013-2014 IBM Corp. */ + +#ifndef SFC_CTRL_H +#define SFC_CTRL_H + +struct spi_flash_ctrl; + +extern int sfc_open(struct spi_flash_ctrl **ctrl); +extern void sfc_close(struct spi_flash_ctrl *ctrl); + +#endif /* SFC_CTRL_H */ |