Release 4.12 include/linux/efi-bgrt.h
#ifndef _LINUX_EFI_BGRT_H
#define _LINUX_EFI_BGRT_H
#include <linux/acpi.h>
#ifdef CONFIG_ACPI_BGRT
void efi_bgrt_init(struct acpi_table_header *table);
int __init acpi_parse_bgrt(struct acpi_table_header *table);
/* The BGRT data itself; only valid if bgrt_image != NULL. */
extern size_t bgrt_image_size;
extern struct acpi_table_bgrt bgrt_tab;
#else /* !CONFIG_ACPI_BGRT */
static inline void efi_bgrt_init(struct acpi_table_header *table) {}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Josh Triplett | 7 | 63.64% | 1 | 50.00% |
Dave Young | 4 | 36.36% | 1 | 50.00% |
Total | 11 | 100.00% | 2 | 100.00% |
static inline int __init acpi_parse_bgrt(struct acpi_table_header *table)
{
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Bhupesh Sharma | 16 | 100.00% | 1 | 100.00% |
Total | 16 | 100.00% | 1 | 100.00% |
#endif /* !CONFIG_ACPI_BGRT */
#endif /* _LINUX_EFI_BGRT_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Josh Triplett | 40 | 51.95% | 1 | 33.33% |
Bhupesh Sharma | 26 | 33.77% | 1 | 33.33% |
Dave Young | 11 | 14.29% | 1 | 33.33% |
Total | 77 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.