diff options
author | Wolfgang Wegner <w.wegner@astro-kom.de> | 2009-12-09 15:16:47 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-12-21 21:39:59 +0100 |
commit | 87d93a1ba2ae23550e1370adb7a3b00af0831165 (patch) | |
tree | d978d96503acbb9f26ea3d83db7e8682bf89e76b /drivers | |
parent | f7767c7541a8cdae55655d10f039a5bc62894ee8 (diff) | |
download | u-boot-imx-87d93a1ba2ae23550e1370adb7a3b00af0831165.zip u-boot-imx-87d93a1ba2ae23550e1370adb7a3b00af0831165.tar.gz u-boot-imx-87d93a1ba2ae23550e1370adb7a3b00af0831165.tar.bz2 |
move prototypes for gunzip() and zunzip() to common.h
Prototype for gunzip/zunzip was only in lib_generic/gunzip.c and thus
repeated in every file using it. This patch moves the prototypes to
common.h and removes all prototypes distributed anywhere else.
Signed-off-by: Wolfgang Wegner <w.wegner@astro-kom.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/cfb_console.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c index 16d6689..c07a26e 100644 --- a/drivers/video/cfb_console.c +++ b/drivers/video/cfb_console.c @@ -403,8 +403,6 @@ static const int video_font_draw_table32[16][4] = { { 0x00ffffff, 0x00ffffff, 0x00ffffff, 0x00ffffff } }; -int gunzip(void *, int, unsigned char *, unsigned long *); - /******************************************************************************/ static void video_drawchars (int xx, int yy, unsigned char *s, int count) |