mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-06 02:46:42 +07:00
0aac881246
Flag single_channel in struct omap2_mcspi_device_config is not used by drivers/spi/spi-omap2-mcspi.c so we may remove it from include/plat/mcspi.h and affected board files. Signed-off-by: Jarkko Nikula <jarkko.nikula@bitmer.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
24 lines
392 B
C
24 lines
392 B
C
#ifndef _OMAP2_MCSPI_H
|
|
#define _OMAP2_MCSPI_H
|
|
|
|
#define OMAP2_MCSPI_REV 0
|
|
#define OMAP3_MCSPI_REV 1
|
|
#define OMAP4_MCSPI_REV 2
|
|
|
|
#define OMAP4_MCSPI_REG_OFFSET 0x100
|
|
|
|
struct omap2_mcspi_platform_config {
|
|
unsigned short num_cs;
|
|
unsigned int regs_offset;
|
|
};
|
|
|
|
struct omap2_mcspi_dev_attr {
|
|
unsigned short num_chipselect;
|
|
};
|
|
|
|
struct omap2_mcspi_device_config {
|
|
unsigned turbo_mode:1;
|
|
};
|
|
|
|
#endif
|