From 3e022a26a0719e86ca99bb9401bab1bbe1a19e1c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 30 Jan 2020 20:17:43 +0900 Subject: Removed explicit usage of the 'register' keyword. Signed-off-by: Michele Calgaro --- kernel/kls_jbig/libjbig/jbig.c | 14 +++++++------- kernel/kls_ljpeg/ljpeg2ppm/huffd.c | 14 +++++++------- kernel/kls_ljpeg/ljpeg2ppm/predictor.c | 4 ++-- kernel/kls_ljpeg/ljpeg2ppm/predictor.h | 4 ++-- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/kernel/kls_jbig/libjbig/jbig.c b/kernel/kls_jbig/libjbig/jbig.c index 6d8afa3..9fcee55 100644 --- a/kernel/kls_jbig/libjbig/jbig.c +++ b/kernel/kls_jbig/libjbig/jbig.c @@ -324,8 +324,8 @@ ARITH_INL void arith_encode(struct jbg_arenc_state *s, int cx, int pix) { extern short jbg_lsz[]; extern unsigned char jbg_nmps[], jbg_nlps[]; - register unsigned lsz, ss; - register unsigned char *st; + unsigned lsz, ss; + unsigned char *st; long temp; #ifdef DEBUG @@ -437,8 +437,8 @@ ARITH_INL int arith_decode(struct jbg_ardec_state *s, int cx) { extern short jbg_lsz[]; extern unsigned char jbg_nmps[], jbg_nlps[]; - register unsigned lsz, ss; - register unsigned char *st; + unsigned lsz, ss; + unsigned char *st; int pix; /* renormalization */ @@ -2031,8 +2031,8 @@ static size_t decode_pscd(struct jbg_dec_state *s, unsigned char *data, unsigned int layer, plane; unsigned long hl, ll, y, hx, hy, lx, ly, hbpl, lbpl; unsigned char *hp, *lp1, *lp2, *p1, *q1; - register unsigned long line_h1, line_h2, line_h3; - register unsigned long line_l1, line_l2, line_l3; + unsigned long line_h1, line_h2, line_h3; + unsigned long line_l1, line_l2, line_l3; struct jbg_ardec_state *se; unsigned long x; long o; @@ -2978,7 +2978,7 @@ void jbg_split_planes(unsigned long x, unsigned long y, int has_planes, unsigned k = 8; int p; unsigned prev; /* previous *src byte shifted by 8 bit to the left */ - register int bits, msb = has_planes - 1; + int bits, msb = has_planes - 1; int bitno; /* sanity checks */ diff --git a/kernel/kls_ljpeg/ljpeg2ppm/huffd.c b/kernel/kls_ljpeg/ljpeg2ppm/huffd.c index 456acf3..ea3480c 100644 --- a/kernel/kls_ljpeg/ljpeg2ppm/huffd.c +++ b/kernel/kls_ljpeg/ljpeg2ppm/huffd.c @@ -201,7 +201,7 @@ PmPutRow(RowBuf,numComp,numCol,Pt) MCU *RowBuf; int numCol,Pt; { - register int col,v; + int col,v; /* * Mulitply 2^Pt before output. Pt is the point @@ -240,7 +240,7 @@ PmPutRow(RowBuf,numComp,numCol,Pt) *-------------------------------------------------------------- */ #define PmPutRow(RowBuf,numComp,numCol,Pt) \ -{ register int col,v; \ +{ int col,v; \ if (numComp==1) { /*pgm*/ \ for (col = 0; col < numCol; col++) { \ v=RowBuf[col][0]<