~ubuntu-branches/ubuntu/lucid/hal/lucid-proposed

« back to all changes in this revision

Viewing changes to hald/freebsd/osspec.c

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-12-03 01:21:24 UTC
  • mto: (1.1.18 squeeze)
  • mto: This revision was merged to the branch mainline in revision 165.
  • Revision ID: james.westby@ubuntu.com-20091203012124-3573qknop973uvc2
Tags: upstream-0.5.14
ImportĀ upstreamĀ versionĀ 0.5.14

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#  include <config.h>
26
26
#endif
27
27
 
 
28
#include <sys/param.h>
28
29
#include <string.h>
29
30
 
30
31
#include "../ids.h"
46
47
#include "hf-sound.h"
47
48
#include "hf-storage.h"
48
49
#include "hf-usb.h"
 
50
#ifdef HAVE_LIBUSB20
 
51
#include "hf-usb2.h"
 
52
#endif
49
53
#include "hf-volume.h"
50
54
 
51
55
/* the order matters: PCI devices must be created before their children, etc */
52
56
static HFHandler *handlers[] = {
53
57
  &hf_pci_handler,
54
58
  &hf_devtree_handler,
 
59
#if __FreeBSD_version < 800092
55
60
  &hf_usb_handler,
 
61
#endif
 
62
#ifdef HAVE_LIBUSB20
 
63
  &hf_usb2_handler,
 
64
#endif
56
65
  &hf_ata_handler,
57
66
  &hf_scsi_handler,
58
67
  &hf_storage_handler,