提交 8ac283ad 编写于 作者: R Randy Dunlap 提交者: Greg Kroah-Hartman

aircable: fix printk format warnings

Fix printk format warnings:
drivers/usb/serial/aircable.c:221: warning: format ‘%Zd’ expects type ‘signed size_t’, but argument 4 has type ‘int’
drivers/usb/serial/aircable.c:283: warning: format ‘%Zd’ expects type ‘signed size_t’, but argument 4 has type ‘int’
Signed-off-by: NRandy Dunlap <rdunlap@xenotime.net>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 3fe70ba2
......@@ -218,7 +218,7 @@ static void aircable_send(struct usb_serial_port *port)
buf = kzalloc(count + HCI_HEADER_LENGTH, GFP_ATOMIC);
if (!buf) {
err("%s- kzalloc(%Zd) failed.", __FUNCTION__,
err("%s- kzalloc(%d) failed.", __FUNCTION__,
count + HCI_HEADER_LENGTH);
return;
}
......@@ -280,7 +280,7 @@ static void aircable_read(void *params)
tty_prepare_flip_string(tty, &data, count);
if (!data){
err("%s- kzalloc(%Zd) failed.", __FUNCTION__, count);
err("%s- kzalloc(%d) failed.", __FUNCTION__, count);
return;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册