plugins: Fix error messages
authorWiktor Lawski <wiktor.lawski@tieto.com>
Mon, 3 Sep 2012 09:57:24 +0000 (11:57 +0200)
committerSamuel Ortiz <sameo@linux.intel.com>
Fri, 7 Sep 2012 15:08:15 +0000 (17:08 +0200)
Make errors from plugins follow the same message convention.

plugins/handover.c
plugins/nfctype2.c
plugins/nfctype3.c
plugins/nfctype4.c

index e14cba6..a53a958 100644 (file)
@@ -159,7 +159,7 @@ static int handover_ndef_parse(int client_fd, struct hr_ndef *ndef)
        return err;
 
 fail:
-       near_error("ndef parsing failed (%d)", err);
+       near_error("ndef parsing failed %d", err);
 
        handover_close(client_fd, 0);
 
@@ -187,7 +187,7 @@ static near_bool_t handover_read_cfg_records(int client_fd,
 
        ndef = g_hash_table_lookup(hr_ndef_hash, GINT_TO_POINTER(client_fd));
        if (ndef == NULL) {
-               near_error("hr_ndef should exist !!!");
+               near_error("hr_ndef should exist");
                return FALSE;
        }
 
index ff684c5..09954db 100644 (file)
@@ -314,7 +314,7 @@ static int nfctype2_read(uint32_t adapter_idx,
                break;
 
        default:
-               DBG("Unknown TAG Type 2 subtype (%d)", tgt_subtype);
+               DBG("Unknown Tag Type 2 subtype %d", tgt_subtype);
                err = -1;
                break;
        }
@@ -437,7 +437,7 @@ static int nfctype2_write(uint32_t adapter_idx, uint32_t target_idx,
        tgt_subtype = near_tag_get_subtype(adapter_idx, target_idx);
 
        if (tgt_subtype != NEAR_TAG_NFC_T2_MIFARE_ULTRALIGHT) {
-               DBG("Unknown Tag Type 2 subtype (%d)", tgt_subtype);
+               DBG("Unknown Tag Type 2 subtype %d", tgt_subtype);
                return -1;
        }
 
@@ -557,7 +557,7 @@ static int nfctype2_format(uint32_t adapter_idx, uint32_t target_idx,
        tgt_subtype = near_tag_get_subtype(adapter_idx, target_idx);
 
        if (tgt_subtype != NEAR_TAG_NFC_T2_MIFARE_ULTRALIGHT) {
-               DBG("Unknown Tag Type 2 subtype (%d)", tgt_subtype);
+               DBG("Unknown Tag Type 2 subtype %d", tgt_subtype);
                return -1;
        }
 
index c3f72be..a5d7166 100644 (file)
@@ -378,7 +378,7 @@ static int poll_ndef_system_code(uint8_t *resp, int length, void *data)
        int err = 0;
        struct type3_cmd cmd;
 
-       DBG(" length: %d", length);
+       DBG("length: %d", length);
 
        if (length < 0) {
                err = -EIO;
@@ -488,7 +488,7 @@ static int receive_system_code(uint8_t *resp, int length, void *data)
        struct type3_cmd cmd;
        uint16_t system_code;
 
-       DBG(" length: %d", length);
+       DBG("length: %d", length);
 
        if (length < 0) {
                err = -EIO;
index 17cfc15..8eb4b26 100644 (file)
@@ -482,7 +482,7 @@ static int t4_readbin_cc(uint8_t *resp, int length, void *data)
        /* TODO 5.1.1: TLV blocks can be zero, one or more... */
        /* TODO 5.1.2: Must ignore proprietary blocks (x05)... */
        if (read_cc->tlv_fc.tag != 0x4) {
-               DBG("NDEF File Control tag not found !");
+               DBG("NDEF File Control tag not found");
                err = -EINVAL;
                goto out_err;
        }