2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2011-10-10 08:22:14 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011 The Chromium OS Authors.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASM_CONFIG_H_
|
|
|
|
#define _ASM_CONFIG_H_
|
|
|
|
|
|
|
|
#define CONFIG_SANDBOX_ARCH
|
|
|
|
|
2013-12-03 23:43:26 +00:00
|
|
|
/* Used by drivers/spi/sandbox_spi.c and arch/sandbox/include/asm/state.h */
|
|
|
|
#ifndef CONFIG_SANDBOX_SPI_MAX_BUS
|
|
|
|
#define CONFIG_SANDBOX_SPI_MAX_BUS 1
|
|
|
|
#endif
|
|
|
|
#ifndef CONFIG_SANDBOX_SPI_MAX_CS
|
|
|
|
#define CONFIG_SANDBOX_SPI_MAX_CS 10
|
|
|
|
#endif
|
|
|
|
|
2011-10-10 08:22:14 +00:00
|
|
|
#endif
|