123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /*
- * Lowlevel hardware access for the
- * Razer Imperator mouse
- *
- * Important notice:
- * This hardware driver is based on reverse engineering, only.
- *
- * Copyright (C) 2012 Michael Buesch <m@bues.ch>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
- #include "hw_imperator.h"
- #include "synapse.h"
- #include "razer_private.h"
- int razer_imperator_init(struct razer_mouse *m,
- struct libusb_device *usbdev)
- {
- int err;
- err = razer_synapse_init(m, NULL, 0);
- if (err)
- return err;
- razer_generic_usb_gen_idstr(usbdev, m->usb_ctx->h, "Imperator", 1,
- razer_synapse_get_serial(m), m->idstr);
- return 0;
- }
- void razer_imperator_release(struct razer_mouse *m)
- {
- razer_synapse_exit(m);
- }
|