diff options
| -rw-r--r-- | host/apps/omap_debug/usrp-e-spi.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/host/apps/omap_debug/usrp-e-spi.c b/host/apps/omap_debug/usrp-e-spi.c index 47ee9369c..2fcc39b9b 100644 --- a/host/apps/omap_debug/usrp-e-spi.c +++ b/host/apps/omap_debug/usrp-e-spi.c @@ -39,7 +39,7 @@ int main(int argc, char *argv[])  	if (*argv[1] == 'r') {  		spi_dat.readback = 1;  		ret = ioctl(fp, USRP_E_SPI, &spi_dat); -		printf("Data returned = %d\n", ret); +		printf("Ioctl returns: %d, Data returned = %d\n", ret, spi_dat.data);  	} else {  		spi_dat.readback = 0;  		ioctl(fp, USRP_E_SPI, &spi_dat);  | 
