Commit b98fc9a3 authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[PATCH] sstfb: cleanups

- Remove 24/32bit unused support (the chips don't do 24/32bit anyway)
- Clean up printk obfuscation
- Clean up lispitus in the if(())()) stuff
- Minor tidying

No functionality changes, may have a crack at hardware scrolling based
on my X driver once the cleanups are in.
Signed-off-by: default avatarAlan Cox <alan@redhat.com>
Cc: Antonino A. Daplas <adaplas@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 3cb340ec
This diff is collapsed.
...@@ -68,10 +68,6 @@ ...@@ -68,10 +68,6 @@
# define print_var(X,Y...) # define print_var(X,Y...)
#endif #endif
#define eprintk(X...) printk(KERN_ERR "sstfb: " X)
#define iprintk(X...) printk(KERN_INFO "sstfb: " X)
#define wprintk(X...) printk(KERN_WARNING "sstfb: " X)
#define BIT(x) (1ul<<(x)) #define BIT(x) (1ul<<(x))
#define POW2(x) (1ul<<(x)) #define POW2(x) (1ul<<(x))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment