diff options
author | Christophe Ricard <christophe.ricard@gmail.com> | 2014-07-28 12:11:35 -0400 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2014-09-07 17:56:48 -0400 |
commit | 2c376a9e3c973e7923daba78aa16c768503cdef3 (patch) | |
tree | 37b70ed1141cb14f2af3fbf54648c99ae97dc351 /drivers/nfc | |
parent | d363d7d0a5755b347de42c28aeab23ecfdcd2348 (diff) |
NFC: st21nfcb: Remove useless new line in nfc_err call
Remove a uselss new line in nfc_err call.
Signed-off-by: Christophe Ricard <christophe-h.ricard@st.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/nfc')
-rw-r--r-- | drivers/nfc/st21nfcb/i2c.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/nfc/st21nfcb/i2c.c b/drivers/nfc/st21nfcb/i2c.c index 11bd5f7220ac..ff67bbf53011 100644 --- a/drivers/nfc/st21nfcb/i2c.c +++ b/drivers/nfc/st21nfcb/i2c.c | |||
@@ -284,8 +284,7 @@ static int st21nfcb_nci_i2c_of_request_resources(struct i2c_client *client) | |||
284 | /* IRQ */ | 284 | /* IRQ */ |
285 | r = irq_of_parse_and_map(pp, 0); | 285 | r = irq_of_parse_and_map(pp, 0); |
286 | if (r < 0) { | 286 | if (r < 0) { |
287 | nfc_err(&client->dev, | 287 | nfc_err(&client->dev, "Unable to get irq, error: %d\n", r); |
288 | "Unable to get irq, error: %d\n", r); | ||
289 | return r; | 288 | return r; |
290 | } | 289 | } |
291 | 290 | ||