diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-04 14:20:10 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-04 14:20:10 -0400 |
commit | 58e4411b2d05bea9992fd8ee510f696b73d314c1 (patch) | |
tree | b37396d9a6e2ab53d11af53a4e73f776fdc7ac79 /tools | |
parent | 5a9f228a183bc18bbc64a12a962adc2c7305782c (diff) | |
parent | 2ce04684335f886fb5adb9ecbd2a85affca549d1 (diff) |
Merge tag 'spi-v4.9' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi
Pull spi updates from Mark Brown:
"The SPI subsystem has also had quite a quiet release, though with a
fairly large set of per-driver changes and several new drivers. The
bulk of the changes are:
- lots and lots of cleanups and improvements for the fsl-espi driver
- new drivers for Broadcom MSPI/iProc/STB, Cavium ThunderX and
J-Core"
* tag 'spi-v4.9' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi: (80 commits)
spi: sc18is602: Change gpiod_set_value to gpiod_set_value_cansleep
spi: pxa2xx: Fix build error because of missing header
spi: imx: fix error return code in spi_imx_probe()
spi: pxa2xx: Add support for GPIO descriptor chip selects
spi: imx: Gracefully handle NULL master->cs_gpios
spi: iproc-qspi: Add Broadcom iProc SoCs support
spi: fsl-espi: improve return value handling in fsl_espi_probe
spi: fsl-espi: simplify of_fsl_espi_probe
spi: fsl-espi: remove unused variable in fsl_espi_setup
spi: bcm-qspi: Fix error return code in bcm_qspi_probe()
spi: bcm-qspi: Fix return value check in bcm_qspi_probe()
spi: bcm-qspi: fix suspend/resume #ifdef
spi: bcm-qspi: don't include linux/mtd/cfi.h
spi: core: Use spi_sync_transfer() in spi_write()/spi_read()
spi: fsl-espi: improve and extend register bit definitions
spi: fsl-espi: align register access with other drivers
spi: fsl-espi: improve and simplify interrupt handler
spi: fsl-espi: simplify fsl_espi_setup_transfer
spi: imx: support loopback mode on imx35
spi: imx: set spi_bus_clk for mx1, mx31 and mx35
...
Diffstat (limited to 'tools')
-rw-r--r-- | tools/spi/Makefile | 2 | ||||
-rw-r--r-- | tools/spi/spidev_test.c | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/tools/spi/Makefile b/tools/spi/Makefile index cd0db62e4d9d..3815b18ba070 100644 --- a/tools/spi/Makefile +++ b/tools/spi/Makefile | |||
@@ -1,3 +1,5 @@ | |||
1 | CC = $(CROSS_COMPILE)gcc | ||
2 | |||
1 | all: spidev_test spidev_fdx | 3 | all: spidev_test spidev_fdx |
2 | 4 | ||
3 | clean: | 5 | clean: |
diff --git a/tools/spi/spidev_test.c b/tools/spi/spidev_test.c index 8a73d8185316..f046b77cfefe 100644 --- a/tools/spi/spidev_test.c +++ b/tools/spi/spidev_test.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <getopt.h> | 19 | #include <getopt.h> |
20 | #include <fcntl.h> | 20 | #include <fcntl.h> |
21 | #include <sys/ioctl.h> | 21 | #include <sys/ioctl.h> |
22 | #include <linux/ioctl.h> | ||
22 | #include <sys/stat.h> | 23 | #include <sys/stat.h> |
23 | #include <linux/types.h> | 24 | #include <linux/types.h> |
24 | #include <linux/spi/spidev.h> | 25 | #include <linux/spi/spidev.h> |
@@ -284,7 +285,7 @@ static void parse_opts(int argc, char *argv[]) | |||
284 | 285 | ||
285 | static void transfer_escaped_string(int fd, char *str) | 286 | static void transfer_escaped_string(int fd, char *str) |
286 | { | 287 | { |
287 | size_t size = strlen(str + 1); | 288 | size_t size = strlen(str); |
288 | uint8_t *tx; | 289 | uint8_t *tx; |
289 | uint8_t *rx; | 290 | uint8_t *rx; |
290 | 291 | ||