updated on Thu Jan 12 08:01:00 UTC 2012
[aur-mirror.git] / i810switch / asus.patch
blob80bd0fdb77555750ab4138a63fb1c4da8a8fb4e0
1 --- i810switch.c 2007-09-12 20:30:32.000000000 +0200
2 +++ i810switch.c.new 2007-09-12 20:29:30.000000000 +0200
3 @@ -60,6 +60,7 @@
4 #define I855STR "8086:3582"
5 //#define I865STR "8086:2572"
6 #define I915STR "8086:2592"
7 +#define I915STR_2 "8086:27a2"
8 #define MEMSTR "Memory at"
9 #define NONPRSTR "32-bit, non-prefetchable"
11 @@ -279,7 +280,8 @@
12 return p;
15 - i = (p = strstr(*buff_ptr, I915STR)) != NULL;
16 + i = (p = strstr(*buff_ptr, I915STR)) != NULL ||
17 + (p = strstr(*buff_ptr, I915STR_2)) != NULL;
18 if (i)
20 *chiptype = I915;