Deleted Added
full compact
dttable.c (228110) dttable.c (229989)
1/******************************************************************************
2 *
3 * Module Name: dttable.c - handling for specific ACPI tables
4 *
5 *****************************************************************************/
6
7/*
1/******************************************************************************
2 *
3 * Module Name: dttable.c - handling for specific ACPI tables
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2011, Intel Corp.
8 * Copyright (C) 2000 - 2012, Intel Corp.
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.

--- 1800 unchanged lines hidden (view full) ---

1817 {
1818 Info = AcpiDmTableInfoGeneric[i];
1819 if (Info->Opcode == ACPI_DMT_EXIT)
1820 {
1821 Info = NULL;
1822 break;
1823 }
1824
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.

--- 1800 unchanged lines hidden (view full) ---

1817 {
1818 Info = AcpiDmTableInfoGeneric[i];
1819 if (Info->Opcode == ACPI_DMT_EXIT)
1820 {
1821 Info = NULL;
1822 break;
1823 }
1824
1825 if (!ACPI_STRCMP (Name, Info->Name))
1825 /* Use caseless compare for generic keywords */
1826
1827 if (!AcpiUtStricmp (Name, Info->Name))
1826 {
1827 break;
1828 }
1829 }
1830
1831 return (Info);
1832}
1833

--- 185 unchanged lines hidden ---
1828 {
1829 break;
1830 }
1831 }
1832
1833 return (Info);
1834}
1835

--- 185 unchanged lines hidden ---