Deleted Added
full compact
ustorage_fs.c (188942) ustorage_fs.c (189275)
1/* $FreeBSD: head/sys/dev/usb/storage/ustorage_fs.c 188942 2009-02-23 18:31:00Z thompsa $ */
1/* $FreeBSD: head/sys/dev/usb/storage/ustorage_fs.c 189275 2009-03-02 05:37:05Z thompsa $ */
2/*-
3 * Copyright (C) 2003-2005 Alan Stern
4 * Copyright (C) 2008 Hans Petter Selasky
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:

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

224static driver_t ustorage_fs_driver = {
225 .name = "ustorage_fs",
226 .methods = ustorage_fs_methods,
227 .size = sizeof(struct ustorage_fs_softc),
228};
229
230static devclass_t ustorage_fs_devclass;
231
2/*-
3 * Copyright (C) 2003-2005 Alan Stern
4 * Copyright (C) 2008 Hans Petter Selasky
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:

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

224static driver_t ustorage_fs_driver = {
225 .name = "ustorage_fs",
226 .methods = ustorage_fs_methods,
227 .size = sizeof(struct ustorage_fs_softc),
228};
229
230static devclass_t ustorage_fs_devclass;
231
232DRIVER_MODULE(ustorage_fs, ushub, ustorage_fs_driver, ustorage_fs_devclass, NULL, 0);
232DRIVER_MODULE(ustorage_fs, uhub, ustorage_fs_driver, ustorage_fs_devclass, NULL, 0);
233MODULE_VERSION(ustorage_fs, 0);
234MODULE_DEPEND(ustorage_fs, usb, 1, 1, 1);
235
236struct usb2_config ustorage_fs_bbb_config[USTORAGE_FS_T_BBB_MAX] = {
237
238 [USTORAGE_FS_T_BBB_COMMAND] = {
239 .type = UE_BULK,
240 .endpoint = UE_ADDR_ANY,

--- 1657 unchanged lines hidden ---
233MODULE_VERSION(ustorage_fs, 0);
234MODULE_DEPEND(ustorage_fs, usb, 1, 1, 1);
235
236struct usb2_config ustorage_fs_bbb_config[USTORAGE_FS_T_BBB_MAX] = {
237
238 [USTORAGE_FS_T_BBB_COMMAND] = {
239 .type = UE_BULK,
240 .endpoint = UE_ADDR_ANY,

--- 1657 unchanged lines hidden ---