Print this page
update to acpica-unix2-20140114
acpica-unix2-20130823
PANKOVs restructure

@@ -3,11 +3,11 @@
  * Module Name: dsinit - Object initialization namespace walk
  *
  *****************************************************************************/
 
 /*
- * Copyright (C) 2000 - 2011, Intel Corp.
+ * Copyright (C) 2000 - 2014, Intel Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:

@@ -126,24 +126,22 @@
         }
 
         Info->OpRegionCount++;
         break;
 
-
     case ACPI_TYPE_METHOD:
 
         Info->MethodCount++;
         break;
 
-
     case ACPI_TYPE_DEVICE:
 
         Info->DeviceCount++;
         break;
 
-
     default:
+
         break;
     }
 
     /*
      * We ignore errors from above, and always return OK, since

@@ -232,7 +230,5 @@
     ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
         "%u Methods, %u Regions\n", Info.MethodCount, Info.OpRegionCount));
 
     return_ACPI_STATUS (AE_OK);
 }
-
-