Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1692685
| From | Marcel Holtmann <marcel@holtmann.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] bluetooth: btwilink: remove unnecessary static in bt_ti_probe() |
| Date | 2017-07-20 11:30 +0200 |
| Message-ID | <u5fWp-5m0-9@gated-at.bofh.it> (permalink) |
| References | <u55X3-6Hd-1@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Hi Gustavo, > Remove unnecessary static on local variable hst. > Such variable is initialized before being used, > on every execution path throughout the function. > The static has no benefit and, removing it reduces > the object file size. > > This issue was detected using Coccinelle and the > following semantic patch: > > @bad exists@ > position p; > identifier x; > type T; > @@ > > static T x@p; > ... > x = <+...x...+> > > @@ > identifier x; > expression e; > type T; > position p != bad.p; > @@ > > -static > T x@p; > ... when != x > when strict > ?x = e; > > In the following log you can see the difference in the object file size. > This log is the output of the size command, before and after the code > change: > > before: > text data bss dec hex filename > 4029 2528 128 6685 1a1d drivers/bluetooth/btwilink.o > > after: > text data bss dec hex filename > 4007 2472 64 6543 198f drivers/bluetooth/btwilink.o > > Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> > --- > drivers/bluetooth/btwilink.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) patch has been applied to bluetooth-next tree. Regards Marcel
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] bluetooth: btwilink: remove unnecessary static in bt_ti_probe() "Gustavo A. R. Silva" <gustavo@embeddedor.com> - 2017-07-20 00:50 +0200
Re: [PATCH] bluetooth: btwilink: remove unnecessary static in bt_ti_probe() Marcel Holtmann <marcel@holtmann.org> - 2017-07-20 11:30 +0200
Re: [PATCH] bluetooth: btwilink: remove unnecessary static in bt_ti_probe() "Gustavo A. R. Silva" <gustavo@embeddedor.com> - 2017-07-20 22:50 +0200
csiph-web