blob: 3b364017dd4d0235b2cc722e7110fd40a853ef05 [file] [log] [blame]
Ronald G. Minnich182615d2004-08-24 16:20:46 +00001/*
2 * (C) 2003 Linux Networx
3 */
4#include <console/console.h>
5#include <device/device.h>
6#include <device/pci.h>
7#include <device/pci_ids.h>
8#include <device/pci_ops.h>
9#include "i82801dbm.h"
10
11
12static struct device_operations ac97audio_ops = {
13 .read_resources = pci_dev_read_resources,
14 .set_resources = pci_dev_set_resources,
15 .enable_resources = pci_dev_enable_resources,
16 .enable = i82801dbm_enable,
17 .init = 0,
18 .scan_bus = 0,
19};
20
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +000021static const struct pci_driver ac97audio_driver __pci_driver = {
Ronald G. Minnich182615d2004-08-24 16:20:46 +000022 .ops = &ac97audio_ops,
23 .vendor = PCI_VENDOR_ID_INTEL,
Uwe Hermanna29ec062007-11-04 03:21:37 +000024 .device = PCI_DEVICE_ID_INTEL_82801DBM_AC97_AUDIO,
Ronald G. Minnich182615d2004-08-24 16:20:46 +000025};
26
27
28static struct device_operations ac97modem_ops = {
29 .read_resources = pci_dev_read_resources,
30 .set_resources = pci_dev_set_resources,
31 .enable_resources = pci_dev_enable_resources,
32 .enable = i82801dbm_enable,
33 .init = 0,
34 .scan_bus = 0,
35};
36
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +000037static const struct pci_driver ac97modem_driver __pci_driver = {
Ronald G. Minnich182615d2004-08-24 16:20:46 +000038 .ops = &ac97modem_ops,
39 .vendor = PCI_VENDOR_ID_INTEL,
Uwe Hermanna29ec062007-11-04 03:21:37 +000040 .device = PCI_DEVICE_ID_INTEL_82801DBM_AC97_MODEM,
Ronald G. Minnich182615d2004-08-24 16:20:46 +000041};