| .. | .. |
|---|
| 6 | 6 | * struct tiny_spi_platform_data - platform data of the OpenCores tiny SPI |
|---|
| 7 | 7 | * @freq: input clock freq to the core. |
|---|
| 8 | 8 | * @baudwidth: baud rate divider width of the core. |
|---|
| 9 | | - * @gpio_cs_count: number of gpio pins used for chipselect. |
|---|
| 10 | | - * @gpio_cs: array of gpio pins used for chipselect. |
|---|
| 11 | 9 | * |
|---|
| 12 | 10 | * freq and baudwidth are used only if the divider is programmable. |
|---|
| 13 | 11 | */ |
|---|
| 14 | 12 | struct tiny_spi_platform_data { |
|---|
| 15 | 13 | unsigned int freq; |
|---|
| 16 | 14 | unsigned int baudwidth; |
|---|
| 17 | | - unsigned int gpio_cs_count; |
|---|
| 18 | | - int *gpio_cs; |
|---|
| 19 | 15 | }; |
|---|
| 20 | 16 | |
|---|
| 21 | 17 | #endif /* _LINUX_SPI_SPI_OC_TINY_H */ |
|---|