Rev 1787 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1787 | Rev 1888 | ||
|---|---|---|---|
| Line 24... | Line 24... | ||
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
27 | */ |
| 28 | 28 | ||
| 29 | /** @addtogroup genarch |
29 | /** @addtogroup genarch |
| 30 | * @{ |
30 | * @{ |
| 31 | */ |
31 | */ |
| 32 | /** @file |
32 | /** @file |
| 33 | */ |
33 | */ |
| 34 | 34 | ||
| 35 | #ifndef __MADT_H__ |
35 | #ifndef KERN_MADT_H_ |
| 36 | #define __MADT_H__ |
36 | #define KERN_MADT_H_ |
| 37 | 37 | ||
| 38 | #include <genarch/acpi/acpi.h> |
38 | #include <genarch/acpi/acpi.h> |
| 39 | #include <arch/smp/apic.h> |
39 | #include <arch/smp/apic.h> |
| 40 | #include <arch/smp/smp.h> |
40 | #include <arch/smp/smp.h> |
| 41 | 41 | ||
| Line 141... | Line 141... | ||
| 141 | extern struct acpi_madt *acpi_madt; |
141 | extern struct acpi_madt *acpi_madt; |
| 142 | extern struct smp_config_operations madt_config_operations; |
142 | extern struct smp_config_operations madt_config_operations; |
| 143 | 143 | ||
| 144 | extern void acpi_madt_parse(void); |
144 | extern void acpi_madt_parse(void); |
| 145 | 145 | ||
| 146 | #endif /* __MADT_H__ */ |
146 | #endif /* KERN_MADT_H_ */ |
| 147 | 147 | ||
| 148 | /** @} |
148 | /** @} |
| 149 | */ |
149 | */ |
| 150 | - | ||