2018-09-03 17:30:23 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Jagan Teki <jagan@amarulasolutions.com>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __spi_davinci_h
|
|
|
|
#define __spi_davinci_h
|
|
|
|
|
2020-12-03 23:55:23 +00:00
|
|
|
struct davinci_spi_plat {
|
2018-09-03 17:30:23 +00:00
|
|
|
struct davinci_spi_regs *regs;
|
|
|
|
u8 num_cs; /* total no. of CS available */
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __spi_davinci_h */
|