From: Anshul <anshulusr@gmail.com>
To: laurent.pinchart@ideasonboard.com, mchehab@kernel.org
Cc: Anshul <anshulusr@gmail.com>,
linux-media@vger.kernel.org, linux-kernel@vger.kernel.org,
anshulusr2@gmail.com
Subject: [PATCH] fixing ERROR: Macros with compex values must be enclosed within parentheses
Date: Sat, 19 Aug 2023 19:01:13 +0530 [thread overview]
Message-ID: <20230819133115.23048-1-anshulusr@gmail.com> (raw)
Signed-off-by: Anshul <anshulusr@gmail.com>
---
drivers/media/usb/uvc/uvc_driver.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/media/usb/uvc/uvc_driver.c b/drivers/media/usb/uvc/uvc_driver.c
index 08fcd2ffa727..8d3bcd18b652 100644
--- a/drivers/media/usb/uvc/uvc_driver.c
+++ b/drivers/media/usb/uvc/uvc_driver.c
@@ -2417,9 +2417,8 @@ static const struct uvc_device_info uvc_quirk_force_y8 = {
.quirks = UVC_QUIRK_FORCE_Y8,
};
-#define UVC_INFO_QUIRK(q) (kernel_ulong_t)&(struct uvc_device_info){.quirks = q}
-#define UVC_INFO_META(m) (kernel_ulong_t)&(struct uvc_device_info) \
- {.meta_format = m}
+#define UVC_INFO_QUIRK(q) ((kernel_ulong_t)&(struct uvc_device_info){.quirks = q})
+#define UVC_INFO_META(m) ((kernel_ulong_t)&(struct uvc_device_info) {.meta_format = m})
/*
* The Logitech cameras listed below have their interface class set to
--
2.41.0
next reply other threads:[~2023-08-19 13:33 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-19 13:31 Anshul [this message]
2023-08-19 14:32 ` [PATCH] fixing ERROR: Macros with compex values must be enclosed within parentheses Laurent Pinchart
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230819133115.23048-1-anshulusr@gmail.com \
--to=anshulusr@gmail.com \
--cc=anshulusr2@gmail.com \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox