Deleted Added
full compact
uplcom.c (189265) uplcom.c (189275)
1/* $NetBSD: uplcom.c,v 1.21 2001/11/13 06:24:56 lukem Exp $ */
2
3#include <sys/cdefs.h>
1/* $NetBSD: uplcom.c,v 1.21 2001/11/13 06:24:56 lukem Exp $ */
2
3#include <sys/cdefs.h>
4__FBSDID("$FreeBSD: head/sys/dev/usb/serial/uplcom.c 189265 2009-03-02 02:44:10Z thompsa $");
4__FBSDID("$FreeBSD: head/sys/dev/usb/serial/uplcom.c 189275 2009-03-02 05:37:05Z thompsa $");
5
6/*-
7 * Copyright (c) 2001-2003, 2005 Shunsuke Akiyama <akiyama@jp.FreeBSD.org>.
8 * All rights reserved.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:

--- 273 unchanged lines hidden (view full) ---

286static devclass_t uplcom_devclass;
287
288static driver_t uplcom_driver = {
289 .name = "uplcom",
290 .methods = uplcom_methods,
291 .size = sizeof(struct uplcom_softc),
292};
293
5
6/*-
7 * Copyright (c) 2001-2003, 2005 Shunsuke Akiyama <akiyama@jp.FreeBSD.org>.
8 * All rights reserved.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:

--- 273 unchanged lines hidden (view full) ---

286static devclass_t uplcom_devclass;
287
288static driver_t uplcom_driver = {
289 .name = "uplcom",
290 .methods = uplcom_methods,
291 .size = sizeof(struct uplcom_softc),
292};
293
294DRIVER_MODULE(uplcom, ushub, uplcom_driver, uplcom_devclass, NULL, 0);
294DRIVER_MODULE(uplcom, uhub, uplcom_driver, uplcom_devclass, NULL, 0);
295MODULE_DEPEND(uplcom, ucom, 1, 1, 1);
296MODULE_DEPEND(uplcom, usb, 1, 1, 1);
297MODULE_VERSION(uplcom, UPLCOM_MODVER);
298
299static int
300uplcom_probe(device_t dev)
301{
302 struct usb2_attach_arg *uaa = device_get_ivars(dev);

--- 533 unchanged lines hidden ---
295MODULE_DEPEND(uplcom, ucom, 1, 1, 1);
296MODULE_DEPEND(uplcom, usb, 1, 1, 1);
297MODULE_VERSION(uplcom, UPLCOM_MODVER);
298
299static int
300uplcom_probe(device_t dev)
301{
302 struct usb2_attach_arg *uaa = device_get_ivars(dev);

--- 533 unchanged lines hidden ---