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