diff options
author | Joe Perches <joe@perches.com> | 2015-04-07 03:17:00 -0400 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2015-04-07 06:05:12 -0400 |
commit | 3590ebc040c9ee5d06754ce926f0e7c3a595e46d (patch) | |
tree | 62d4e1160321ab1d8172e780280232311e4cd5e3 /drivers/nfc/microread | |
parent | 5df848f37b1d20e5dd64bea16ba9f69ed321e11b (diff) |
NFC: logging neatening
Add missing terminating newlines to nfc_info and nfc_err
to avoid possible interleaving from other messages.
Miscellanea:
o typo fix of "unknonwn" in message
o remove unnecessary OOM messages as there's a generic dump_stack()
o realign arguments
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/nfc/microread')
-rw-r--r-- | drivers/nfc/microread/i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nfc/microread/i2c.c b/drivers/nfc/microread/i2c.c index df85cd3d9db0..661e2c8143c4 100644 --- a/drivers/nfc/microread/i2c.c +++ b/drivers/nfc/microread/i2c.c | |||
@@ -286,7 +286,7 @@ static int microread_i2c_probe(struct i2c_client *client, | |||
286 | if (r < 0) | 286 | if (r < 0) |
287 | goto err_irq; | 287 | goto err_irq; |
288 | 288 | ||
289 | nfc_info(&client->dev, "Probed"); | 289 | nfc_info(&client->dev, "Probed\n"); |
290 | 290 | ||
291 | return 0; | 291 | return 0; |
292 | 292 | ||