usb: gadget: udc: renesas_usb3: make const array max_packet_array static
authorColin Ian King <colin.king@canonical.com>
Thu, 2 Nov 2017 15:53:25 +0000 (15:53 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 3 Nov 2017 09:12:27 +0000 (10:12 +0100)
commit8af620f06f015eb9e9062f6398204ee011b5ef22
tree6202c1f1b410c71d742f0b269306b94848e9bcdb
parent17c0899682a55666e58f2200d5599f3a7b22867f
usb: gadget: udc: renesas_usb3: make const array max_packet_array static

Don't populate the const array max_packet_array on the stack, instead make
it static. Makes the object code smaller by over 90 bytes:

Before:
   text    data     bss     dec     hex filename
  34337    5612     128   40077    9c8d renesas_usb3.o

After:
   text    data     bss     dec     hex filename
  34149    5708     128   39985    9c31 renesas_usb3.o

(gcc version 7.2.0 x86_64)

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/gadget/udc/renesas_usb3.c