2018-09-03 23:00:23 +05:30
|
|
|
/*
|
|
|
|
|
* 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 16:55:23 -07:00
|
|
|
struct davinci_spi_plat {
|
2018-09-03 23:00:23 +05:30
|
|
|
struct davinci_spi_regs *regs;
|
|
|
|
|
u8 num_cs; /* total no. of CS available */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif /* __spi_davinci_h */
|