On 2/7/2018 1:58 AM, Johannes Thumshirn wrote:
On Tue, Feb 06, 2018 at 06:28:44PM -0800, James Smart wrote:
lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
- "0469 lpfc_link_speed attribute cannot be set to %d, "
- "allowed values are ["LPFC_LINK_SPEED_STRING"]\n", val);
+ "0469 lpfc_link_speed attribute cannot be set to %d, "
+ "allowed values are ["LPFC_LINK_SPEED_STRING"]\n", val);
lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
"0469 lpfc_link_speed attribute cannot be set to %d, "
"allowed values are [%s]\n",
val, LPFC_LINK_SPEED_STRING);
And possible have the whole quoted string on one line for easier grepping.
checkplatch.pl should've told you that.
Checkpatch didn't say anything interesting. We consistently have line
spanning as the lines are fairly verbose. Not an easy way to avoid that.
Regardless, no big deal.
-- james