config.h 413 B

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