View | Details | Raw Unified | Return to bug 20437 | Differences between
and this patch

Collapse All | Expand All

(-)ata-dma.c (+3 lines)
Lines 101-106 Link Here
101
101
102
    switch (scp->chiptype) {
102
    switch (scp->chiptype) {
103
103
104
    case 0x244b8086:
104
    case 0x24118086:    /* Intel ICH */
105
    case 0x24118086:    /* Intel ICH */
105
	if (udmamode >= 4) {
106
	if (udmamode >= 4) {
106
	    int32_t mask48, new48;
107
	    int32_t mask48, new48;
Lines 139-144 Link Here
139
	    if (bootverbose)
140
	    if (bootverbose)
140
		ata_printf(scp, device, "%s setting up UDMA2 mode on %s chip\n",
141
		ata_printf(scp, device, "%s setting up UDMA2 mode on %s chip\n",
141
			   (error) ? "failed" : "success",
142
			   (error) ? "failed" : "success",
143
			   (scp->chiptype == 0x244b8086) ? "ICH2" : 
142
			   (scp->chiptype == 0x24118086) ? "ICH" : 
144
			   (scp->chiptype == 0x24118086) ? "ICH" : 
143
			    (scp->chiptype == 0x24218086) ? "ICH0" :"PIIX4");
145
			    (scp->chiptype == 0x24218086) ? "ICH0" :"PIIX4");
144
	    if (!error) {
146
	    if (!error) {
Lines 179-184 Link Here
179
		ata_printf(scp, device, "%s setting up WDMA2 mode on %s chip\n",
181
		ata_printf(scp, device, "%s setting up WDMA2 mode on %s chip\n",
180
			   (error) ? "failed" : "success",
182
			   (error) ? "failed" : "success",
181
			   (scp->chiptype == 0x70108086) ? "PIIX3" : 
183
			   (scp->chiptype == 0x70108086) ? "PIIX3" : 
184
			    (scp->chiptype == 0x244b8086) ? "ICH2" :
182
			    (scp->chiptype == 0x24118086) ? "ICH" :
185
			    (scp->chiptype == 0x24118086) ? "ICH" :
183
			     (scp->chiptype == 0x24218086) ? "ICH0" :"PIIX4");
186
			     (scp->chiptype == 0x24218086) ? "ICH0" :"PIIX4");
184
	    if (!error) {
187
	    if (!error) {

Return to bug 20437