Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux...
[firefly-linux-kernel-4.4.55.git] / include / acpi / actbl1.h
index 556c83ee6b42f3fafc419755f47062cde2212412..4ec8c194bfe55334fa5076401da04db5a0fa259b 100644 (file)
@@ -457,7 +457,7 @@ struct acpi_hest_aer_common {
        u8 enabled;
        u32 records_to_preallocate;
        u32 max_sections_per_record;
-       u32 bus;
+       u32 bus;                /* Bus and Segment numbers */
        u16 device;
        u16 function;
        u16 device_control;
@@ -473,6 +473,14 @@ struct acpi_hest_aer_common {
 #define ACPI_HEST_FIRMWARE_FIRST        (1)
 #define ACPI_HEST_GLOBAL                (1<<1)
 
+/*
+ * Macros to access the bus/segment numbers in Bus field above:
+ *  Bus number is encoded in bits 7:0
+ *  Segment number is encoded in bits 23:8
+ */
+#define ACPI_HEST_BUS(bus)              ((bus) & 0xFF)
+#define ACPI_HEST_SEGMENT(bus)          (((bus) >> 8) & 0xFFFF)
+
 /* Hardware Error Notification */
 
 struct acpi_hest_notify {