]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
NFC: pn533: Remove redundant cmd_ prefix in the struct
authorWaldemar Rymarkiewicz <waldemar.rymarkiewicz@tieto.com>
Wed, 3 Apr 2013 06:02:06 +0000 (08:02 +0200)
committerSamuel Ortiz <sameo@linux.intel.com>
Thu, 11 Apr 2013 14:29:03 +0000 (16:29 +0200)
'cmd->code' looks better then 'cmd->cmd_code'

Signed-off-by: Waldemar Rymarkiewicz <waldemar.rymarkiewicz@tieto.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
drivers/nfc/pn533.c

index 147ad05122b382df3bc6a945feef2e31542f159a..80a6e7ceb1612141c636633d0bd638fbec7836f8 100644 (file)
@@ -359,7 +359,7 @@ struct pn533 {
 
 struct pn533_cmd {
        struct list_head queue;
-       u8 cmd_code;
+       u8 code;
        struct sk_buff *req;
        struct sk_buff *resp;
        int resp_len;
@@ -503,7 +503,7 @@ static struct pn533_frame_ops pn533_std_frame_ops = {
 static bool pn533_rx_frame_is_cmd_response(struct pn533 *dev, void *frame)
 {
        return (dev->ops->get_cmd_code(frame) ==
-                               PN533_CMD_RESPONSE(dev->cmd->cmd_code));
+                               PN533_CMD_RESPONSE(dev->cmd->code));
 }
 
 
@@ -737,7 +737,7 @@ static int __pn533_send_async(struct pn533 *dev, u8 cmd_code,
        if (!cmd)
                return -ENOMEM;
 
-       cmd->cmd_code = cmd_code;
+       cmd->code = cmd_code;
        cmd->req = req;
        cmd->resp = resp;
        cmd->resp_len = resp_len;
@@ -850,7 +850,7 @@ static int pn533_send_cmd_direct_async(struct pn533 *dev, u8 cmd_code,
                return -ENOMEM;
        }
 
-       cmd->cmd_code = cmd_code;
+       cmd->code = cmd_code;
        cmd->req = req;
        cmd->resp = resp;
        cmd->resp_len = resp_len;