commit | 6224abda0db8845756571833744d4414f144ecb5 | [log] [tgz] |
---|---|---|
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | Mon Nov 13 00:15:07 2017 +0100 |
committer | David S. Miller <davem@davemloft.net> | Tue Nov 14 16:38:46 2017 +0900 |
tree | aa6b654bc0e22efdf73a65db0d90b411d45a87e5 | |
parent | c46d7642e915106b0301bc4d53a79e8e806c2eb9 [diff] |
net: core: drop pointless check in __dev_alloc_name The only caller passes a stack buffer as buf, so it won't equal the passed-in name. Moreover, we're already using buf as a scratch buffer inside the if (p) {} block, so if buf and name were the same, that snprintf() call would be overwriting its own format string. Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk> Signed-off-by: David S. Miller <davem@davemloft.net>