[Nouveau] [Bug 78092] GK208M [GeForce GT 730M] (rev ff) (prog-if ff) nouveau module load fail
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Wed Apr 30 13:09:42 PDT 2014
https://bugs.freedesktop.org/show_bug.cgi?id=78092
--- Comment #16 from Ilia Mirkin <imirkin at alum.mit.edu> ---
BTW, this isn't the immediate problem, but in your patch you have,
if (!dhandle)
printk("DEBUG: !dhandle\n");
return false;
Which is unlikely to do what you expect. Unlike Python, C uses braces to define
blocks, so that probably should have been
if (!dhandle) {
printk("DEBUG: !dhandle\n");
return false;
}
But if the first print isn't getting triggered, it doesn't even get far enough
for this to be a problem.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/nouveau/attachments/20140430/925eab68/attachment.html>
More information about the Nouveau
mailing list