Revert "drivers/sensor: Convert formatter strings to use PRI defines"

This reverts commit e60af3be66.

We revert this as we intent to move away from {u}int{8,16,32,64}_t types
to our own internal types for sized variables so we shouldn't need the
PRI macros anymore.

Change-Id: I4a57eb2c23cb1b137112224f604602d40c7cce4f
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2017-04-19 10:39:21 -05:00
commit 8814f4f7b4
13 changed files with 22 additions and 23 deletions

View file

@ -205,7 +205,7 @@ static int fxas21002_init(struct device *dev)
}
if (whoami != config->whoami) {
SYS_LOG_ERR("WHOAMI value received 0x%" PRIx8 ", expected 0x%x",
SYS_LOG_ERR("WHOAMI value received 0x%x, expected 0x%x",
whoami, config->whoami);
return -EIO;
}