Quote:
Originally Posted by invisiblek
cool
no not at all, the only real reason i knew what happened there is i was trying to do it the other night and ended up giving up (like 3am lol)
|
New error for you. I think I can pull this off this time though, lol:
Code:
drivers/gpu/msm/adreno_a2xx.c: In function 'a2xx_cp_intrcallback':
drivers/gpu/msm/adreno_a2xx.c:1639: error: 'TASK_INTERRUPTIBLE' undeclared (first use in this function)
drivers/gpu/msm/adreno_a2xx.c:1639: error: (Each undeclared identifier is reported only once
drivers/gpu/msm/adreno_a2xx.c:1639: error: for each function it appears in.)
I'm sure the issue is the commits were built from tiamat so they probably had some of the necessary commits.
So the fix for this error was to add: #include <linux/sched.h> to the file with the error.
Next error:
Code:
drivers/gpu/msm/adreno.c: In function 'adreno_getchipid':
drivers/gpu/msm/adreno.c:377: error: implicit declaration of function 'cpu_is_msm8930'
drivers/gpu/msm/adreno.c: In function 'adreno_getproperty':
drivers/gpu/msm/adreno.c:801: error: 'struct kgsl_devinfo' has no member named 'gpu_id'
It's been a while since I did any serious kernel work. Fun...
|