Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

null_acpi.h 379B

1234567891011121314151617181920212223
  1. #ifndef _IPXE_NULL_ACPI_H
  2. #define _IPXE_NULL_ACPI_H
  3. /** @file
  4. *
  5. * Standard do-nothing ACPI interface
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  9. #ifdef ACPI_NULL
  10. #define ACPI_PREFIX_null
  11. #else
  12. #define ACPI_PREFIX_null __null_
  13. #endif
  14. static inline __always_inline userptr_t
  15. ACPI_INLINE ( null, acpi_find_rsdt ) ( void ) {
  16. return UNULL;
  17. }
  18. #endif /* _IPXE_NULL_ACPI_H */