aboutsummaryrefslogtreecommitdiff
path: root/include/linux/cfag12864b.h
AgeCommit message (Collapse)AuthorFilesLines
2021-02-26treewide: Miguel has movedMiguel Ojeda1-1/+1
Update contact info. Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Miguel Ojeda <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
2018-04-12auxdisplay: Replace licenses with SPDX identifiersMiguel Ojeda1-15/+1
Cc: Philippe Ombredanne <[email protected]> Acked-by: Willy Tarreau <[email protected]> Acked-by: Linus Walleij <[email protected]> Acked-by: Robin van der Gracht <[email protected]> Acked-by: Geert Uytterhoeven <[email protected]> Signed-off-by: Miguel Ojeda <[email protected]>
2011-03-31Fix common misspellingsLucas De Marchi1-1/+1
Fixes generated by 'codespell' and manually reviewed. Signed-off-by: Lucas De Marchi <[email protected]>
2008-07-04Miguel Ojeda has movedMiguel Ojeda1-1/+1
Signed-off-by: Miguel Ojeda <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
2007-02-20[PATCH] cfag12864b: fix crash when built-in and no parport presentMiguel Ojeda1-0/+5
The problem comes when ks0108/cfag12864b are built-in and no parallel port is present. ks0108_init() is called first, as it should be, but fails to load (as there is no parallel port to use). After that, cfag12864b_init() gets called, without knowing anything about ks0108 failed, and calls ks0108_writecontrol(), which dereferences an uninitialized pointer. Init order is OK, I think. The problem is how to stop cfag12864b_init() being called if ks0108 failed to load. modprobe does it for us, but, how when built-in? Signed-off-by: Miguel Ojeda Sandonis <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
2007-02-11[PATCH] drivers: add LCD supportMiguel Ojeda Sandonis1-0/+77
Add support for auxiliary displays, the ks0108 LCD controller, the cfag12864b LCD and adds a framebuffer device: cfag12864bfb. - Add a "auxdisplay/" folder in "drivers/" for auxiliary display drivers. - Add support for the ks0108 LCD Controller as a device driver. (uses parport interface) - Add support for the cfag12864b LCD as a device driver. (uses ks0108 LCD Controller driver) - Add a framebuffer device called cfag12864bfb. (uses cfag12864b LCD driver) - Add the usual Documentation, includes, Makefiles, Kconfigs, MAINTAINERS, CREDITS... - Miguel Ojeda will maintain all the stuff above. [[email protected]: workqueue fixups] [[email protected]: kconfig fix] Signed-off-by: Miguel Ojeda Sandonis <[email protected]> Cc: Greg KH <[email protected]> Acked-by: Paulo Marques <[email protected]> Cc: "Randy.Dunlap" <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>