1/*
2 * Copyright (C) 2018 Jagan Teki <jagan@amarulasolutions.com>
3 *
4 * SPDX-License-Identifier:	GPL-2.0+
5 */
6
7#ifndef __spi_davinci_h
8#define __spi_davinci_h
9
10struct davinci_spi_plat {
11	struct davinci_spi_regs *regs;
12	u8 num_cs;	   /* total no. of CS available */
13};
14
15#endif /* __spi_davinci_h */
16