linux/drivers/usb/storage/usual-tables.c

// SPDX-License-Identifier: GPL-2.0+
/*
 * Driver for USB Mass Storage devices
 * Usual Tables File for usb-storage and libusual
 *
 * Copyright (C) 2009 Alan Stern ([email protected])
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/usb.h>
#include <linux/usb_usual.h>


/*
 * The table of devices
 */
#define UNUSUAL_DEV

#define COMPLIANT_DEV

#define USUAL_DEV

const struct usb_device_id usb_storage_usb_ids[] =;
MODULE_DEVICE_TABLE(usb, usb_storage_usb_ids);

#undef UNUSUAL_DEV
#undef COMPLIANT_DEV
#undef USUAL_DEV

/*
 * The table of devices to ignore
 */
struct ignore_entry {};

#define UNUSUAL_DEV

static const struct ignore_entry ignore_ids[] =;

#undef UNUSUAL_DEV

/* Return an error if a device is in the ignore_ids list */
int usb_usual_ignore_device(struct usb_interface *intf)
{}