OSDN Git Service

media: cxusb: pass buf as a const u8 * pointer and make buf static const
authorColin Ian King <colin.king@canonical.com>
Mon, 18 Sep 2017 14:24:44 +0000 (10:24 -0400)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Fri, 8 Dec 2017 15:05:41 +0000 (10:05 -0500)
commitcee32edb2302b6199dd763d44573f6b4f220f0e8
treee66e462afa954299109ba3974c9c53de5a53c567
parentd259f91c0efb3896daadc1cd0c5207e5c81cb6b7
media: cxusb: pass buf as a const u8 * pointer and make buf static const

Don't populate the read-only u8 array buf on the stack at run time but
instead make it static const; makes object code smaller saving over 480
bytes:

Before:
   text    data     bss     dec     hex filename
  33030   65936     192   99158   18356 drivers/media/usb/dvb-usb/cxusb.o

After:
   text    data     bss     dec     hex filename
  32446   66032     192   98670   1816e drivers/media/usb/dvb-usb/cxusb.o

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/usb/dvb-usb/cxusb.c