linux/drivers/hid/hid-emsff.c

// SPDX-License-Identifier: GPL-2.0-or-later
/*
 *  Force feedback support for EMS Trio Linker Plus II
 *
 *  Copyright (c) 2010 Ignaz Forster <[email protected]>
 */

/*
 */


#include <linux/hid.h>
#include <linux/input.h>
#include <linux/module.h>

#include "hid-ids.h"

struct emsff_device {};

static int emsff_play(struct input_dev *dev, void *data,
			 struct ff_effect *effect)
{}

static int emsff_init(struct hid_device *hid)
{}

static int ems_probe(struct hid_device *hdev, const struct hid_device_id *id)
{}

static const struct hid_device_id ems_devices[] =;
MODULE_DEVICE_TABLE(hid, ems_devices);

static struct hid_driver ems_driver =;
module_hid_driver();

MODULE_DESCRIPTION();
MODULE_LICENSE();