]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
spi: fixed odd static string conventions in core code
authorLinus Walleij <linus.walleij@stericsson.com>
Thu, 21 Oct 2010 19:06:44 +0000 (21:06 +0200)
committerGrant Likely <grant.likely@secretlab.ca>
Fri, 22 Oct 2010 15:51:05 +0000 (09:51 -0600)
This patch removes convention of passing a static string as a
parameter to another static string.  The convention is intended to
reduce text usage by sharing the common bits of the string, but the
implementation is inherently fragile (a change to one format string
but not the other will nullify any possible advantage), it isn't
necessarily a net win depending on what this compiler does, and it
it reduces code readability.

Signed-off-by: Linus Walleij <linus.walleij@stericsson.com>
[grant.likely@secretlab.ca: removed dev_dbg->dev_err hunk]
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>

No differences found