diff options
author | Akinobu Mita | 2006-12-08 11:36:26 +0100 |
---|---|---|
committer | Linus Torvalds | 2006-12-08 17:28:40 +0100 |
commit | 1c6676825fe4cc03a71f253fc3e16ec17c6a3195 (patch) | |
tree | e4d8b21dc6cc3df4f5c1482a0c546ffadb61f748 /drivers/video/Kconfig | |
parent | [PATCH] crc32: replace bitreverse by bitrev32 (diff) | |
download | kernel-qcow2-linux-1c6676825fe4cc03a71f253fc3e16ec17c6a3195.tar.gz kernel-qcow2-linux-1c6676825fe4cc03a71f253fc3e16ec17c6a3195.tar.xz kernel-qcow2-linux-1c6676825fe4cc03a71f253fc3e16ec17c6a3195.zip |
[PATCH] video: use bitrev8
Use bitrev8 for nvidiafb, rivafb, and tgafb drivers
Cc: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video/Kconfig')
-rw-r--r-- | drivers/video/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 7a43020fa583..c69b6ef1d2ce 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -541,6 +541,7 @@ config FB_TGA select FB_CFB_FILLRECT select FB_CFB_COPYAREA select FB_CFB_IMAGEBLIT + select BITREVERSE help This is the frame buffer device driver for generic TGA graphic cards. Say Y if you have one of those. @@ -705,6 +706,7 @@ config FB_NVIDIA select FB_CFB_FILLRECT select FB_CFB_COPYAREA select FB_CFB_IMAGEBLIT + select BITREVERSE help This driver supports graphics boards with the nVidia chips, TNT and newer. For very old chipsets, such as the RIVA128, then use @@ -744,6 +746,7 @@ config FB_RIVA select FB_CFB_FILLRECT select FB_CFB_COPYAREA select FB_CFB_IMAGEBLIT + select BITREVERSE help This driver supports graphics boards with the nVidia Riva/Geforce chips. |