mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 20:53:53 +08:00
ae7c2d342a
Change to use SPI_CS_HIGH to support spi CS polarity setting for chips support enhance_timing. Signed-off-by: Luhua Xu <luhua.xu@mediatek.com> Link: https://lore.kernel.org/r/1574053037-26721-2-git-send-email-luhua.xu@mediatek.com Signed-off-by: Mark Brown <broonie@kernel.org>
17 lines
344 B
C
17 lines
344 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* MTK SPI bus driver definitions
|
|
*
|
|
* Copyright (c) 2015 MediaTek Inc.
|
|
* Author: Leilk Liu <leilk.liu@mediatek.com>
|
|
*/
|
|
|
|
#ifndef ____LINUX_PLATFORM_DATA_SPI_MTK_H
|
|
#define ____LINUX_PLATFORM_DATA_SPI_MTK_H
|
|
|
|
/* Board specific platform_data */
|
|
struct mtk_chip_config {
|
|
u32 sample_sel;
|
|
};
|
|
#endif
|