config.h 413 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (c) 2011 The Chromium OS Authors.
  4. */
  5. #ifndef _ASM_CONFIG_H_
  6. #define _ASM_CONFIG_H_
  7. #define CONFIG_SANDBOX_ARCH
  8. /* Used by drivers/spi/sandbox_spi.c and arch/sandbox/include/asm/state.h */
  9. #ifndef CONFIG_SANDBOX_SPI_MAX_BUS
  10. #define CONFIG_SANDBOX_SPI_MAX_BUS 1
  11. #endif
  12. #ifndef CONFIG_SANDBOX_SPI_MAX_CS
  13. #define CONFIG_SANDBOX_SPI_MAX_CS 10
  14. #endif
  15. #endif