|
Lines 92-97
#include <linux/device.h>
Link Here
|
| 92 |
#include <scsi/scsi_host.h> |
92 |
#include <scsi/scsi_host.h> |
| 93 |
#include <linux/libata.h> |
93 |
#include <linux/libata.h> |
| 94 |
|
94 |
|
|
|
95 |
#undef DPRINTK |
| 96 |
#define DPRINTK(fmt, args...) printk(KERN_ERR "%s: " fmt, __FUNCTION__, ## args) |
| 97 |
|
| 95 |
#define DRV_NAME "ata_piix" |
98 |
#define DRV_NAME "ata_piix" |
| 96 |
#define DRV_VERSION "2.00ac7" |
99 |
#define DRV_VERSION "2.00ac7" |
| 97 |
|
100 |
|
|
Lines 408-414
static const struct piix_map_db ich6m_ma
Link Here
|
| 408 |
{ P0, P2, RV, RV }, /* 00b */ |
411 |
{ P0, P2, RV, RV }, /* 00b */ |
| 409 |
{ IDE, IDE, P1, P3 }, /* 01b */ |
412 |
{ IDE, IDE, P1, P3 }, /* 01b */ |
| 410 |
{ P0, P2, IDE, IDE }, /* 10b */ |
413 |
{ P0, P2, IDE, IDE }, /* 10b */ |
| 411 |
{ RV, RV, RV, RV }, |
414 |
{ IDE, IDE, NA, NA }, /* 11b */ |
| 412 |
}, |
415 |
}, |
| 413 |
}; |
416 |
}; |
| 414 |
|
417 |
|