Commit 4c6c390e authored by Vitaly Wool's avatar Vitaly Wool Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (10832): tvaudio: Avoid breakage with tda9874a



The 'bytes' array is 64 bytes large but the easy standard programming
    (TDA9874A_ESP) has a number of 255, outside the shadow array size.

This patch increases the size of the shadow array in order to accomodate
this register.

Signed-off-by: default avatarVitaly Wool <vital@embeddedalley.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent d2c45230
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -54,7 +54,7 @@ MODULE_LICENSE("GPL");
/* ---------------------------------------------------------------------- */
/* our structs                                                            */

#define MAXREGS 64
#define MAXREGS 256

struct CHIPSTATE;
typedef int  (*getvalue)(int);