aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ppp_deflate.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ppp_deflate.c')
-rw-r--r--drivers/net/ppp_deflate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ppp_deflate.c b/drivers/net/ppp_deflate.c
index eb98b661efba..034c1c650bcb 100644
--- a/drivers/net/ppp_deflate.c
+++ b/drivers/net/ppp_deflate.c
@@ -206,7 +206,7 @@ static void z_comp_reset(void *arg)
206 * Returns the length of the compressed packet, or 0 if the 206 * Returns the length of the compressed packet, or 0 if the
207 * packet is incompressible. 207 * packet is incompressible.
208 */ 208 */
209int z_compress(void *arg, unsigned char *rptr, unsigned char *obuf, 209static int z_compress(void *arg, unsigned char *rptr, unsigned char *obuf,
210 int isize, int osize) 210 int isize, int osize)
211{ 211{
212 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg; 212 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg;
@@ -435,7 +435,7 @@ static void z_decomp_reset(void *arg)
435 * bug, so we return DECOMP_FATALERROR for them in order to turn off 435 * bug, so we return DECOMP_FATALERROR for them in order to turn off
436 * compression, even though they are detected by inspecting the input. 436 * compression, even though they are detected by inspecting the input.
437 */ 437 */
438int z_decompress(void *arg, unsigned char *ibuf, int isize, 438static int z_decompress(void *arg, unsigned char *ibuf, int isize,
439 unsigned char *obuf, int osize) 439 unsigned char *obuf, int osize)
440{ 440{
441 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg; 441 struct ppp_deflate_state *state = (struct ppp_deflate_state *) arg;