diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2006-10-03 01:15:07 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-03 08:04:13 -0700 |
commit | b98fc9a34bfcfd2a04e58c4fc5e408fce13204bb (patch) | |
tree | 5de90c2ca0478f8eb8cf77401c8fd2192e613b9d /include/video | |
parent | 3cb340ecbb010013229ac56f26707252ebed09b8 (diff) | |
download | linux-3.10-b98fc9a34bfcfd2a04e58c4fc5e408fce13204bb.tar.gz linux-3.10-b98fc9a34bfcfd2a04e58c4fc5e408fce13204bb.tar.bz2 linux-3.10-b98fc9a34bfcfd2a04e58c4fc5e408fce13204bb.zip |
[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: Alan Cox <alan@redhat.com>
Cc: Antonino A. Daplas <adaplas@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/sstfb.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/video/sstfb.h b/include/video/sstfb.h index 3570f9c9b11..5dbf5e7e50a 100644 --- a/include/video/sstfb.h +++ b/include/video/sstfb.h @@ -68,10 +68,6 @@ # define print_var(X,Y...) #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 POW2(x) (1ul<<(x)) |