From 26244c43f2898baef4cc6fd2dc877f61bb498943 Mon Sep 17 00:00:00 2001 From: px4dev Date: Sat, 25 Aug 2012 18:26:21 -0700 Subject: make the I2C and SPI device signons distinct --- apps/drivers/device/i2c.cpp | 2 +- apps/drivers/device/spi.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/drivers') diff --git a/apps/drivers/device/i2c.cpp b/apps/drivers/device/i2c.cpp index f5f29fde3..c4b2aa944 100644 --- a/apps/drivers/device/i2c.cpp +++ b/apps/drivers/device/i2c.cpp @@ -99,7 +99,7 @@ I2C::init() } // tell the world where we are - log("on bus %d at 0x%02x", _bus, _address); + log("on I2C bus %d at 0x%02x", _bus, _address); out: return ret; diff --git a/apps/drivers/device/spi.cpp b/apps/drivers/device/spi.cpp index f56f5433a..a1761b769 100644 --- a/apps/drivers/device/spi.cpp +++ b/apps/drivers/device/spi.cpp @@ -111,7 +111,7 @@ SPI::init() } // tell the workd where we are - log("on bus %d at %d", _bus, _device); + log("on SPI bus %d at %d", _bus, _device); out: return ret; -- cgit v1.2.3