aboutsummaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-01-10 06:06:19 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-10 06:06:19 -0500
commit736f93236ce786d1bcf09ad4dcb38a360d35ea1b (patch)
tree9d400ee537c86df5b8fbd890d0942e550305bf03 /init
parentb17304245f0db0ac69b795c411407808f3f2796d (diff)
bzip2/lzma: make flush_buffer() unconditional
Impact: build fix flush_buffer() is used unconditionally: init/initramfs.c:456: error: 'flush_buffer' undeclared (first use in this function) init/initramfs.c:456: error: (Each undeclared identifier is reported only once init/initramfs.c:456: error: for each function it appears in.) So remove the decompressor #ifdefs from around it. Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'init')
-rw-r--r--init/initramfs.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/init/initramfs.c b/init/initramfs.c
index f8241e832aa3..76f4a0125338 100644
--- a/init/initramfs.c
+++ b/init/initramfs.c
@@ -390,7 +390,6 @@ static int __init write_buffer(char *buf, unsigned len)
390 return len - count; 390 return len - count;
391} 391}
392 392
393#if defined CONFIG_RD_GZIP || defined CONFIG_RD_BZIP2 || defined CONFIG_RD_LZMA
394static int __init flush_buffer(void *bufv, unsigned len) 393static int __init flush_buffer(void *bufv, unsigned len)
395{ 394{
396 char *buf = (char *) bufv; 395 char *buf = (char *) bufv;
@@ -413,7 +412,6 @@ static int __init flush_buffer(void *bufv, unsigned len)
413 } 412 }
414 return origLen; 413 return origLen;
415} 414}
416#endif
417 415
418static unsigned my_inptr; /* index of next byte to be processed in inbuf */ 416static unsigned my_inptr; /* index of next byte to be processed in inbuf */
419 417