diff options
| author | Colin Ian King <colin.king@canonical.com> | 2017-07-24 17:44:45 -0400 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2017-07-26 08:04:21 -0400 |
| commit | 808f5154a75669fb08e1cc7019a4707836e21870 (patch) | |
| tree | 1f235652530a99eae7bcfd5f040defbe42219e0b | |
| parent | 5771a8c08880cdca3bfb4a3fc6d309d6bba20877 (diff) | |
spi: pic32: fix spelling mistakes on macro names
Trivial fix to spelling mistakes macros; fix EMPTY spellings:
RX_FIFO_EMTPY -> RX_FIFO_EMPTY
TX_FIFO_EMTPY -> TX_FIFO_EMPTY
Note that there are no other occurrances of these macros in the
source.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
| -rw-r--r-- | drivers/spi/spi-pic32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/spi/spi-pic32.c b/drivers/spi/spi-pic32.c index fefb688a3432..f8a45af1fa9f 100644 --- a/drivers/spi/spi-pic32.c +++ b/drivers/spi/spi-pic32.c | |||
| @@ -52,14 +52,14 @@ struct pic32_spi_regs { | |||
| 52 | 52 | ||
| 53 | /* Bit fields of SPI Control Register */ | 53 | /* Bit fields of SPI Control Register */ |
| 54 | #define CTRL_RX_INT_SHIFT 0 /* Rx interrupt generation */ | 54 | #define CTRL_RX_INT_SHIFT 0 /* Rx interrupt generation */ |
| 55 | #define RX_FIFO_EMTPY 0 | 55 | #define RX_FIFO_EMPTY 0 |
| 56 | #define RX_FIFO_NOT_EMPTY 1 /* not empty */ | 56 | #define RX_FIFO_NOT_EMPTY 1 /* not empty */ |
| 57 | #define RX_FIFO_HALF_FULL 2 /* full by half or more */ | 57 | #define RX_FIFO_HALF_FULL 2 /* full by half or more */ |
| 58 | #define RX_FIFO_FULL 3 /* completely full */ | 58 | #define RX_FIFO_FULL 3 /* completely full */ |
| 59 | 59 | ||
| 60 | #define CTRL_TX_INT_SHIFT 2 /* TX interrupt generation */ | 60 | #define CTRL_TX_INT_SHIFT 2 /* TX interrupt generation */ |
| 61 | #define TX_FIFO_ALL_EMPTY 0 /* completely empty */ | 61 | #define TX_FIFO_ALL_EMPTY 0 /* completely empty */ |
| 62 | #define TX_FIFO_EMTPY 1 /* empty */ | 62 | #define TX_FIFO_EMPTY 1 /* empty */ |
| 63 | #define TX_FIFO_HALF_EMPTY 2 /* empty by half or more */ | 63 | #define TX_FIFO_HALF_EMPTY 2 /* empty by half or more */ |
| 64 | #define TX_FIFO_NOT_FULL 3 /* atleast one empty */ | 64 | #define TX_FIFO_NOT_FULL 3 /* atleast one empty */ |
| 65 | 65 | ||
