// SPDX-License-Identifier: GPL-2.0 /* * Implement 'Simple Boot Flag Specification 2.0' */ #include <linux/types.h> #include <linux/kernel.h> #include <linux/init.h> #include <linux/string.h> #include <linux/spinlock.h> #include <linux/acpi.h> #include <asm/io.h> #include <linux/mc146818rtc.h> #define SBF_RESERVED (0x78) #define SBF_PNPOS (1<<0) #define SBF_BOOTING (1<<1) #define SBF_DIAG (1<<2) #define SBF_PARITY (1<<7) int sbf_port __initdata = -1; /* set via acpi_boot_init() */
static int __init parity(u8 v) { int x = 0; int i; for (i = 0; i < 8; i++) { x ^= (v & 1); v >>= 1; } return x; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dave Jones | 48 | 100.00% | 1 | 100.00% |
Total | 48 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Dave Jones | 70 | 95.89% | 1 | 50.00% |
Len Brown | 3 | 4.11% | 1 | 50.00% |
Total | 73 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Dave Jones | 49 | 94.23% | 1 | 50.00% |
Cyrill V. Gorcunov | 3 | 5.77% | 1 | 50.00% |
Total | 52 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Dave Jones | 34 | 100.00% | 1 | 100.00% |
Total | 34 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Dave Jones | 72 | 88.89% | 1 | 33.33% |
Len Brown | 5 | 6.17% | 1 | 33.33% |
Cyrill V. Gorcunov | 4 | 4.94% | 1 | 33.33% |
Total | 81 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Dave Jones | 325 | 93.66% | 1 | 16.67% |
Len Brown | 13 | 3.75% | 2 | 33.33% |
Cyrill V. Gorcunov | 7 | 2.02% | 1 | 16.67% |
Greg Kroah-Hartman | 1 | 0.29% | 1 | 16.67% |
Paul Gortmaker | 1 | 0.29% | 1 | 16.67% |
Total | 347 | 100.00% | 6 | 100.00% |