Print this page
PANKOVs restructure


  17  * information: Portions Copyright [yyyy] [name of copyright owner]
  18  *
  19  * CDDL HEADER END
  20  */
  21 
  22 /*
  23  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
  24  * Use is subject to license terms.
  25  */
  26 /*
  27  * Copyright (c) 2009-2010, Intel Corporation.
  28  * All rights reserved.
  29  */
  30 
  31 #include <sys/types.h>
  32 #include <sys/cmn_err.h>
  33 #include <sys/note.h>
  34 #include <sys/sysmacros.h>
  35 #include <sys/sunddi.h>
  36 #include <sys/sunndi.h>
  37 #include <sys/acpi/acpi.h>
  38 #include <sys/acpica.h>
  39 #include <sys/acpidev.h>
  40 #include <sys/acpidev_impl.h>
  41 #include <util/sscanf.h>
  42 
  43 /* Data structures used to extract the numeric unit address from string _UID. */
  44 static acpidev_pseudo_uid_head_t acpidev_uid_heads[ACPIDEV_CLASS_ID_MAX];
  45 static char *acpidev_uid_formats[] = {
  46         "%u",
  47 };
  48 
  49 static char *acpidev_unknown_object_name = "<unknown>";
  50 
  51 int
  52 acpidev_query_device_status(ACPI_HANDLE hdl)
  53 {
  54         int status;
  55 
  56         ASSERT(hdl != NULL);
  57         if (hdl == NULL) {




  17  * information: Portions Copyright [yyyy] [name of copyright owner]
  18  *
  19  * CDDL HEADER END
  20  */
  21 
  22 /*
  23  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
  24  * Use is subject to license terms.
  25  */
  26 /*
  27  * Copyright (c) 2009-2010, Intel Corporation.
  28  * All rights reserved.
  29  */
  30 
  31 #include <sys/types.h>
  32 #include <sys/cmn_err.h>
  33 #include <sys/note.h>
  34 #include <sys/sysmacros.h>
  35 #include <sys/sunddi.h>
  36 #include <sys/sunndi.h>
  37 #include <acpica/include/acpi.h>
  38 #include <sys/acpica.h>
  39 #include <sys/acpidev.h>
  40 #include <sys/acpidev_impl.h>
  41 #include <util/sscanf.h>
  42 
  43 /* Data structures used to extract the numeric unit address from string _UID. */
  44 static acpidev_pseudo_uid_head_t acpidev_uid_heads[ACPIDEV_CLASS_ID_MAX];
  45 static char *acpidev_uid_formats[] = {
  46         "%u",
  47 };
  48 
  49 static char *acpidev_unknown_object_name = "<unknown>";
  50 
  51 int
  52 acpidev_query_device_status(ACPI_HANDLE hdl)
  53 {
  54         int status;
  55 
  56         ASSERT(hdl != NULL);
  57         if (hdl == NULL) {