/***************************************************************************
*
* probe-acpi.c : Probe for ACPI device information
*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*
* Licensed under the Academic Free License version 2.1
*
**************************************************************************/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <errno.h>
#include <string.h>
#include <strings.h>
#include <ctype.h>
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <glib.h>
#include <libhal.h>
#include <logger.h>
int
{
char *udi;
char *devfs_path;
goto out;
goto out;
setup_logger();
goto out;
HAL_DEBUG(("Doing probe-acpi for %s (udi=%s)",
device_file, udi));
goto out;
}
}
ret = 0;
out:
if (fd >= 0) {
}
if (dbus_error_is_set(&error)) {
}
}
return (ret);
}