提交 d43b2393 编写于 作者: C Colin Ian King 提交者: David S. Miller

atm: idt77252: clean up trigraph warning on ??) string

The character sequence ??) is a trigraph and causes the following
clang warning:

drivers/atm/idt77252.c:3544:35: warning: trigraph ignored [-Wtrigraphs]

Clean this by replacing it with single ?.
Signed-off-by: NColin Ian King <colin.king@canonical.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 be393dd6
...@@ -3536,7 +3536,7 @@ static int idt77252_preset(struct idt77252_dev *card) ...@@ -3536,7 +3536,7 @@ static int idt77252_preset(struct idt77252_dev *card)
return -1; return -1;
} }
if (!(pci_command & PCI_COMMAND_IO)) { if (!(pci_command & PCI_COMMAND_IO)) {
printk("%s: PCI_COMMAND: %04x (???)\n", printk("%s: PCI_COMMAND: %04x (?)\n",
card->name, pci_command); card->name, pci_command);
deinit_card(card); deinit_card(card);
return (-1); return (-1);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册