diff options
| author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2012-03-14 05:48:05 -0400 |
|---|---|---|
| committer | Grant Likely <grant.likely@secretlab.ca> | 2012-03-15 05:41:01 -0400 |
| commit | 49e599b8595f9d33276860c6a02e05f240c4ceca (patch) | |
| tree | 50259b5e076f6551a86e7b8dcfcf96aaf3f19398 /include/linux/spi | |
| parent | ec139b67ad00647239b804d6f15315b83dba9a58 (diff) | |
spi: sh-hspi: control spi clock more correctly
Current sh-hspi had used platform-specific speed.
This patch remove it, and use spi_transfer specific speed.
It removes unnecessary flags from struct sh_hspi_info,
but struct sh_hspi_info is still exist, since sh-hspi needs
platform info in the future.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'include/linux/spi')
| -rw-r--r-- | include/linux/spi/sh_hspi.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/linux/spi/sh_hspi.h b/include/linux/spi/sh_hspi.h index 956d11288294..a1121f872ac1 100644 --- a/include/linux/spi/sh_hspi.h +++ b/include/linux/spi/sh_hspi.h | |||
| @@ -17,18 +17,7 @@ | |||
| 17 | #ifndef SH_HSPI_H | 17 | #ifndef SH_HSPI_H |
| 18 | #define SH_HSPI_H | 18 | #define SH_HSPI_H |
| 19 | 19 | ||
| 20 | /* | ||
| 21 | * flags | ||
| 22 | * | ||
| 23 | * | ||
| 24 | */ | ||
| 25 | #define SH_HSPI_CLK_DIVC(d) (d & 0xFF) | ||
| 26 | |||
| 27 | #define SH_HSPI_FBS (1 << 8) | ||
| 28 | #define SH_HSPI_CLKP_HIGH (1 << 9) /* default LOW */ | ||
| 29 | #define SH_HSPI_IDIV_DIV128 (1 << 10) /* default div16 */ | ||
| 30 | struct sh_hspi_info { | 20 | struct sh_hspi_info { |
| 31 | u32 flags; | ||
| 32 | }; | 21 | }; |
| 33 | 22 | ||
| 34 | #endif | 23 | #endif |
