jumpshot.c (664b0bae0b87f69bc9deb098f5e0158b9cf18e04) jumpshot.c (32bca2df7da27be34371a37f9bb5e2b85fdd92bd)
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Driver for Lexar "Jumpshot" Compact Flash reader
4 *
5 * jumpshot driver v0.1:
6 *
7 * First release
8 *

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

46#include "debug.h"
47#include "scsiglue.h"
48
49#define DRV_NAME "ums-jumpshot"
50
51MODULE_DESCRIPTION("Driver for Lexar \"Jumpshot\" Compact Flash reader");
52MODULE_AUTHOR("Jimmie Mayfield <mayfield+usb@sackheads.org>");
53MODULE_LICENSE("GPL");
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Driver for Lexar "Jumpshot" Compact Flash reader
4 *
5 * jumpshot driver v0.1:
6 *
7 * First release
8 *

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

46#include "debug.h"
47#include "scsiglue.h"
48
49#define DRV_NAME "ums-jumpshot"
50
51MODULE_DESCRIPTION("Driver for Lexar \"Jumpshot\" Compact Flash reader");
52MODULE_AUTHOR("Jimmie Mayfield <mayfield+usb@sackheads.org>");
53MODULE_LICENSE("GPL");
54MODULE_IMPORT_NS(USB_STORAGE);
54
55/*
56 * The table of devices
57 */
58#define UNUSUAL_DEV(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax, \
59 vendorName, productName, useProtocol, useTransport, \
60 initFunction, flags) \
61{ USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \

--- 621 unchanged lines hidden ---
55
56/*
57 * The table of devices
58 */
59#define UNUSUAL_DEV(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax, \
60 vendorName, productName, useProtocol, useTransport, \
61 initFunction, flags) \
62{ USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \

--- 621 unchanged lines hidden ---