Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 554eb0f2 authored by Johan Hovold's avatar Johan Hovold
Browse files

USB: mxu11x0: rename usb-serial driver



Rename the usb-serial driver "mxu11x0" to match the USB driver name.

Signed-off-by: default avatarJohan Hovold <johan@kernel.org>
parent 9631595a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -958,10 +958,10 @@ static void mxu1_interrupt_callback(struct urb *urb)
			status);
}

static struct usb_serial_driver mxuport11_device = {
static struct usb_serial_driver mxu11x0_device = {
	.driver = {
		.owner		= THIS_MODULE,
		.name		= "mxuport11",
		.name		= "mxu11x0",
	},
	.description		= "MOXA UPort 11x0",
	.id_table		= mxu1_idtable,
@@ -981,7 +981,7 @@ static struct usb_serial_driver mxuport11_device = {
};

static struct usb_serial_driver *const serial_drivers[] = {
	&mxuport11_device, NULL
	&mxu11x0_device, NULL
};

module_usb_serial_driver(serial_drivers, mxu1_idtable);