Innolux Display Module #AT080TN42 Support
Hi All, I was looking under drivers/video but couldn't find any file dealing with Innolux Display Module #AT080TN42. Is it supported by Linux? I found this patch related to the module for 2.6.27 but I don't think it was integrated. Thanks in advance Best Regards Himanshu -- To unsubscribe from this list: ... 20 Dec 2009 12:30
[PATCH] new kfifo API v.08 (fixed)
This is a complete rewrite of the new kfifo API, which is now really generic. The API is still stable. There are different types of a fifo which can not handled in C without a lot of overhead. So i decided to write the API as a set of macros, which is the only way to do a kind of template meta programming witho... 20 Dec 2009 06:00
Documentation: update ftrace-design.txt
On Fri, 2009-12-18 at 15:17 -0800, Randy Dunlap wrote: From: Randy Dunlap <randy.dunlap(a)oracle.com> Correct grammos. Spell out words. Add missing words. Consistent use of "mcount()" function name. Signed-off-by: Randy Dunlap <randy.dunlap(a)oracle.com> Cc: Steven Rostedt <rostedt(a)goodmis.org> ... 19 Dec 2009 08:22
epoll'ing tcp sockets for reading
Hello people, I have a question about epoll'ing tcp sockets. Is it possible (with epoll or some other good method) to get userspace notified not only of the fact that some data has become available for the socket, but also of the respective _size_ available for reading connected with this exact event? Yes, rea... 19 Dec 2009 13:49
Documentation: update mmiotrace.txt
On Fri, 18 Dec 2009 15:16:56 -0800 Randy Dunlap <randy.dunlap(a)oracle.com> wrote: From: Randy Dunlap <randy.dunlap(a)oracle.com> Fix typos, spellos, hyphenation, line lengths. BTW: are there some userspace tools? There is a reference to some at the wiki page, but there are no tools listed there. ... 19 Dec 2009 06:14
drivers/gpu/drm/radeon/radeon_test.c:45: undefined reference to `__udivdi3'
Hi Jim, On Fri, Dec 18, 2009 at 12:54 PM, Mr. James W. Laferriere <babydr(a)baby-dragons.com> wrote: � � � �Hello Benjamin , �I am not having a good time compiling 2.6.32.1 . First RCU 'inline' difficulties then fusion-mpt 'inline' difficulty , �Now this . � � � �This one is not a simple as removing 'inli... 20 Dec 2009 01:44
Compat-wireless releases for 2.6.33-rc1 and 2.6.32.2
2.6.33-rc1 went out yesterday so today we get the respective backport code now with 802.11 and bluetooth combined on the compat-wireless package [1]. At this point only bug fixes are welcomed for that package. At the last minute I decided to add Atheros Ethernet drivers atlx, atl1e and atl1c. For wireless specific ... 19 Dec 2009 05:10
2.6.32 seemed to have broken nVidia MCP7A sata controller
On 12/19/2009 01:13 AM, Mike Cui wrote: I have an nVidia MCP7A AHCI controller. I upgraded to 2.6.32.2 and my system deterministically freezes trying to mount file systems. Once in a while it will come back and finish booting after freezing for 1 minute or 2. dmesg indicates that there were NCQ errors, but ... 26 Jan 2010 05:27
[PATCH 7/7] sound: Use kzalloc for allocating only one thing
From: Julia Lawall <julia(a)diku.dk> Use kzalloc rather than kcalloc(1,...) The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ @@ - kcalloc(1, + kzalloc( ...) // </smpl> Signed-off-by: Julia Lawall <julia(a)diku.dk> --- sound/isa/msnd/msnd_... 19 Dec 2009 03:02
[PATCH 2/7] drivers/gpu: Use kzalloc for allocating only one thing
From: Julia Lawall <julia(a)diku.dk> Use kzalloc rather than kcalloc(1,...) The use of the allocated memory that looks like an array is &p->relocs[0], but this should be the same as p->relocs. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ @@ - kcallo... 19 Dec 2009 03:02