aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/msi.h
diff options
context:
space:
mode:
authorLogan Gunthorpe <logang@deltatee.com>2019-02-08 09:54:38 -0700
committerBjorn Helgaas <bhelgaas@google.com>2019-02-08 13:30:10 -0600
commitddd065e423c1bad6c573297455ef0a9755ef12d4 (patch)
tree95c6e874fbe8c5cbaa377f300ff2a288fa62847c /include/linux/msi.h
parentPCI: Move Rohm Vendor ID to generic list (diff)
downloadwireguard-linux-ddd065e423c1bad6c573297455ef0a9755ef12d4.tar.xz
wireguard-linux-ddd065e423c1bad6c573297455ef0a9755ef12d4.zip
genirq/msi: Clean up usage of __u8/__u16 types
The double underscore types are meant for compatibility in userspace headers which does not apply here. Therefore, change to use the standard no-underscore types. The origin of the double underscore types dates back to before the git era so I was not able to find a commit to see the original justification. Signed-off-by: Logan Gunthorpe <logang@deltatee.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'include/linux/msi.h')
-rw-r--r--include/linux/msi.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/linux/msi.h b/include/linux/msi.h
index 784fb52b9900..7e9b81c3b50d 100644
--- a/include/linux/msi.h
+++ b/include/linux/msi.h
@@ -83,12 +83,12 @@ struct msi_desc {
struct {
u32 masked;
struct {
- __u8 is_msix : 1;
- __u8 multiple : 3;
- __u8 multi_cap : 3;
- __u8 maskbit : 1;
- __u8 is_64 : 1;
- __u16 entry_nr;
+ u8 is_msix : 1;
+ u8 multiple : 3;
+ u8 multi_cap : 3;
+ u8 maskbit : 1;
+ u8 is_64 : 1;
+ u16 entry_nr;
unsigned default_irq;
} msi_attrib;
union {