Mailing List Archive

[xen staging] x86/pci: add suffix 'U' to PCI_CONF_ADDRESS macro
commit ea3272f8457b46a3932a84253078524131e2c3ab
Author: Alessandro Zucchelli <alessandro.zucchelli@bugseng.com>
AuthorDate: Thu Apr 25 09:52:51 2024 +0200
Commit: Jan Beulich <jbeulich@suse.com>
CommitDate: Thu Apr 25 09:52:51 2024 +0200

x86/pci: add suffix 'U' to PCI_CONF_ADDRESS macro

This addresses violations of MISRA C:2012 Rule 7.2 which states as
following: A ā€œuā€ or ā€œUā€ suffix shall be applied to all integer constants
that are represented in an unsigned type.

No functional change.

Signed-off-by: Alessandro Zucchelli <alessandro.zucchelli@bugseng.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
---
xen/arch/x86/x86_64/pci.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xen/arch/x86/x86_64/pci.c b/xen/arch/x86/x86_64/pci.c
index aad1c3f7cf..8d33429103 100644
--- a/xen/arch/x86/x86_64/pci.c
+++ b/xen/arch/x86/x86_64/pci.c
@@ -9,7 +9,7 @@
#include <asm/io.h>

#define PCI_CONF_ADDRESS(sbdf, reg) \
- (0x80000000 | ((sbdf).bdf << 8) | ((reg) & ~3))
+ (0x80000000U | ((sbdf).bdf << 8) | ((reg) & ~3))

uint8_t pci_conf_read8(pci_sbdf_t sbdf, unsigned int reg)
{
--
generated by git-patchbot for /home/xen/git/xen.git#staging