commit | 72e36017eee0ffcbcf1630074f122916ed104269 | [log] [tgz] |
---|---|---|
author | Colin Ian King <colin.king@canonical.com> | Fri Jul 07 16:55:19 2017 +0100 |
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | Sun Jul 09 19:11:49 2017 +0100 |
tree | fad024f92aca5e78150d0a42c5930cd6d4b11f1f | |
parent | 36d311bc1663f004529d2f870c1fc939d00c49f0 [diff] |
iio: accel: make array init_data static to reduce code size Making the const array init_data static rather having it on the stack saves us a couple hundreds of bytes: Before: text data bss dec hex filename 3175 848 0 4023 fb7 drivers/iio/accel/da311.o After: text data bss dec hex filename 2860 936 0 3796 ed4 drivers/iio/accel/da311.o Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>