Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4b2a9532 authored by Waldemar Rymarkiewicz's avatar Waldemar Rymarkiewicz Committed by Samuel Ortiz
Browse files

NFC: pn533: Remove redundant cmd_ prefix in the struct



'cmd->code' looks better then 'cmd->cmd_code'

Signed-off-by: default avatarWaldemar Rymarkiewicz <waldemar.rymarkiewicz@tieto.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 2c206fb7
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -359,7 +359,7 @@ struct pn533 {


struct pn533_cmd {
struct pn533_cmd {
	struct list_head queue;
	struct list_head queue;
	u8 cmd_code;
	u8 code;
	struct sk_buff *req;
	struct sk_buff *req;
	struct sk_buff *resp;
	struct sk_buff *resp;
	int resp_len;
	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)
static bool pn533_rx_frame_is_cmd_response(struct pn533 *dev, void *frame)
{
{
	return (dev->ops->get_cmd_code(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)
	if (!cmd)
		return -ENOMEM;
		return -ENOMEM;


	cmd->cmd_code = cmd_code;
	cmd->code = cmd_code;
	cmd->req = req;
	cmd->req = req;
	cmd->resp = resp;
	cmd->resp = resp;
	cmd->resp_len = resp_len;
	cmd->resp_len = resp_len;
@@ -850,7 +850,7 @@ static int pn533_send_cmd_direct_async(struct pn533 *dev, u8 cmd_code,
		return -ENOMEM;
		return -ENOMEM;
	}
	}


	cmd->cmd_code = cmd_code;
	cmd->code = cmd_code;
	cmd->req = req;
	cmd->req = req;
	cmd->resp = resp;
	cmd->resp = resp;
	cmd->resp_len = resp_len;
	cmd->resp_len = resp_len;