blob: 1f5b65eb09644d4a8130bb443bc3421cc40b3f7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/*
* 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);
}
|