root/include/linux/platform_data/spi-clps711x.h

/* [<][>][^][v][top][bottom][index][help] */
   1 /* SPDX-License-Identifier: GPL-2.0-or-later */
   2 /*
   3  *  CLPS711X SPI bus driver definitions
   4  *
   5  *  Copyright (C) 2012 Alexander Shiyan <shc_work@mail.ru>
   6  */
   7 
   8 #ifndef ____LINUX_PLATFORM_DATA_SPI_CLPS711X_H
   9 #define ____LINUX_PLATFORM_DATA_SPI_CLPS711X_H
  10 
  11 /* Board specific platform_data */
  12 struct spi_clps711x_pdata {
  13         int *chipselect;        /* Array of GPIO-numbers */
  14         int num_chipselect;     /* Total count of GPIOs */
  15 };
  16 
  17 #endif

/* [<][>][^][v][top][bottom][index][help] */