[XEN PATCH] xen/pci: drop remaining uses of bool_t

Nicola Vetrini posted 1 patch 8 months, 2 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://gitlab.com/xen-project/patchew/xen tags/patchew/cd7bd01c1ca9f3c6668ed15f7300c17a981c1708.1692965750.git.nicola.vetrini@bugseng.com
xen/include/xen/pci.h | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
[XEN PATCH] xen/pci: drop remaining uses of bool_t
Posted by Nicola Vetrini 8 months, 2 weeks ago
The remaining occurrences of the type bool_t in the header
file can be removed. This also resolves violations of
MISRA C:2012 Rule 8.3 introduced by 870d5cd9a91f
("xen/IOMMU: Switch bool_t to bool").

Signed-off-by: Nicola Vetrini <nicola.vetrini@bugseng.com>
---
 xen/include/xen/pci.h | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/xen/include/xen/pci.h b/xen/include/xen/pci.h
index a8c8c4ff11c3..7d8a7cd21301 100644
--- a/xen/include/xen/pci.h
+++ b/xen/include/xen/pci.h
@@ -75,8 +75,8 @@ struct pci_dev_info {
      * VF's 'is_extfn' field is used to indicate whether its PF is an extended
      * function.
      */
-    bool_t is_extfn;
-    bool_t is_virtfn;
+    bool is_extfn;
+    bool is_virtfn;
     struct {
         u8 bus;
         u8 devfn;
@@ -158,10 +158,10 @@ struct pci_dev {
 
 void pcidevs_lock(void);
 void pcidevs_unlock(void);
-bool_t __must_check pcidevs_locked(void);
+bool __must_check pcidevs_locked(void);
 
-bool_t pci_known_segment(u16 seg);
-bool_t pci_device_detect(u16 seg, u8 bus, u8 dev, u8 func);
+bool pci_known_segment(u16 seg);
+bool pci_device_detect(u16 seg, u8 bus, u8 dev, u8 func);
 int scan_pci_devices(void);
 enum pdev_type pdev_type(u16 seg, u8 bus, u8 devfn);
 int find_upstream_bridge(u16 seg, u8 *bus, u8 *devfn, u8 *secbus);
@@ -211,7 +211,7 @@ unsigned int pci_size_mem_bar(pci_sbdf_t sbdf, unsigned int pos,
                               unsigned int flags);
 
 void pci_intx(const struct pci_dev *, bool enable);
-bool_t pcie_aer_get_firmware_first(const struct pci_dev *);
+bool pcie_aer_get_firmware_first(const struct pci_dev *);
 
 struct pirq;
 int msixtbl_pt_register(struct domain *, struct pirq *, uint64_t gtable);
-- 
2.34.1
Re: [XEN PATCH] xen/pci: drop remaining uses of bool_t
Posted by Jan Beulich 8 months, 2 weeks ago
On 25.08.2023 14:18, Nicola Vetrini wrote:
> The remaining occurrences of the type bool_t in the header
> file can be removed. This also resolves violations of
> MISRA C:2012 Rule 8.3 introduced by 870d5cd9a91f
> ("xen/IOMMU: Switch bool_t to bool").
> 
> Signed-off-by: Nicola Vetrini <nicola.vetrini@bugseng.com>

Acked-by: Jan Beulich <jbeulich@suse.com>