lkml.org 
[lkml]   [2004]   [Aug]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectPATCH: deal with further ITE funny, fix a couple of ite8212 errors
Further stuff c/o Bryce the wondertester


--- drivers/ide/ide-probe.c~ 2004-08-16 16:19:05.830364888 +0100
+++ drivers/ide/ide-probe.c 2004-08-16 16:19:05.831364736 +0100
@@ -784,6 +784,8 @@
if(strcmp(hwif->drives[0].id->model, drive->id->model) == 0 &&
/* Don't do this for noprobe or non ATA */
strcmp(drive->id->model, "UNKNOWN") &&
+ /* ITE haven't got this figured out either (see the quirk code too) */
+ !strstr(drive->id->model, "Integrated Technology Express") &&
/* And beware of confused Maxtor drives that go "M0000000000"
"The SN# is garbage in the ID block..." [Eric] */
strncmp(drive->id->serial_no, "M0000000000000000000", 20) &&
--- drivers/ide/pci/it8212.c~ 2004-08-16 16:22:09.545435952 +0100
+++ drivers/ide/pci/it8212.c 2004-08-16 16:14:23.251323432 +0100
@@ -78,7 +78,7 @@

struct it8212_dev
{
- int smart:1, /* Are we in smart raid mode */
+ unsigned int smart:1, /* Are we in smart raid mode */
timing10:1; /* Rev 0x10 */
u8 clock_mode; /* 0, ATA_50 or ATA_66 */
u8 want[2][2]; /* Mode/Pri log for master slave */
@@ -652,7 +652,7 @@
printk(KERN_ERR "it8212: out of memory, falling back to legacy behaviour.\n");
goto fallback;
}
- memset(idev, 0, sizeof(*idev));
+ memset(idev, 0, sizeof(struct it8212_dev));
ide_set_hwifdata(hwif, idev);

hwif->remove = it8212_memfree;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
\
 
 \ /
  Last update: 2005-03-22 14:05    [W:2.569 / U:0.276 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site