9
0
Fork 0

net: usb: asix: fix formating

Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Antony Pavlov 2014-04-11 08:19:42 +04:00 committed by Sascha Hauer
parent 1fc66d1401
commit 9b2fb23ea9
1 changed files with 8 additions and 9 deletions

View File

@ -286,7 +286,7 @@ static int asix_sw_reset(struct usbnet *dev, u8 flags)
{
int ret;
ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL);
ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL);
if (ret < 0)
dev_err(&dev->edev.dev, "Failed to send software reset: %02x\n", ret);
@ -453,8 +453,8 @@ static int asix_rx_fixup(struct usbnet *dev, void *buf, int len)
}
static int asix_tx_fixup(struct usbnet *dev,
void *buf, int len,
void *nbuf, int *nlen)
void *buf, int len,
void *nbuf, int *nlen)
{
unsigned int packet_len;
@ -696,10 +696,10 @@ static struct driver_info ax88772b_info = {
.description = "ASIX AX88772B USB 2.0 Ethernet",
.bind = ax88772_bind,
.unbind = asix_unbind,
.flags = FLAG_ETHER | FLAG_FRAMING_AX,
.rx_fixup = asix_rx_fixup,
.tx_fixup = asix_tx_fixup,
.data = FLAG_EEPROM_MAC,
.flags = FLAG_ETHER | FLAG_FRAMING_AX,
.rx_fixup = asix_rx_fixup,
.tx_fixup = asix_tx_fixup,
.data = FLAG_EEPROM_MAC,
};
static const struct usb_device_id products [] = {
@ -800,7 +800,6 @@ static struct usb_driver asix_driver = {
static int __init asix_init(void)
{
return usb_driver_register(&asix_driver);
return usb_driver_register(&asix_driver);
}
device_initcall(asix_init);