Searched refs:hdev (Results 51 - 75 of 94) sorted by relevance

1234

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/hid/
H A Dhid-sunplus.c25 static void sp_report_fixup(struct hid_device *hdev, __u8 *rdesc, argument
30 dev_info(&hdev->dev, "fixing up Sunplus Wireless Desktop "
39 static int sp_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
H A Dhid-apple.c221 static int apple_event(struct hid_device *hdev, struct hid_field *field, argument
224 struct apple_sc *asc = hid_get_drvdata(hdev);
226 if (!(hdev->claimed & HID_CLAIMED_INPUT) || !field->hidinput ||
238 hidinput_apple_event(hdev, field->hidinput->input,
249 static void apple_report_fixup(struct hid_device *hdev, __u8 *rdesc, argument
252 struct apple_sc *asc = hid_get_drvdata(hdev);
256 dev_info(&hdev->dev, "fixing up MacBook JIS keyboard report "
282 static int apple_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
298 static int apple_input_mapped(struct hid_device *hdev, struct hid_input *hi, argument
302 struct apple_sc *asc = hid_get_drvdata(hdev);
316 apple_probe(struct hid_device *hdev, const struct hid_device_id *id) argument
357 apple_remove(struct hid_device *hdev) argument
[all...]
H A Dhid-3m-pct.c39 static int mmm_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
112 static int mmm_input_mapped(struct hid_device *hdev, struct hid_input *hi, argument
253 static int mmm_probe(struct hid_device *hdev, const struct hid_device_id *id) argument
260 dev_err(&hdev->dev, "cannot allocate 3M data\n");
263 hid_set_drvdata(hdev, md);
265 ret = hid_parse(hdev);
267 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
274 static void mmm_remove(struct hid_device *hdev) argument
276 hid_hw_stop(hdev);
277 kfree(hid_get_drvdata(hdev));
[all...]
H A Dhid-cando.c36 static int cando_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
83 static int cando_input_mapped(struct hid_device *hdev, struct hid_input *hi, argument
203 static int cando_probe(struct hid_device *hdev, const struct hid_device_id *id) argument
210 dev_err(&hdev->dev, "cannot allocate Cando Touch data\n");
213 hid_set_drvdata(hdev, td);
218 ret = hid_parse(hdev);
220 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
228 static void cando_remove(struct hid_device *hdev) argument
230 hid_hw_stop(hdev);
231 kfree(hid_get_drvdata(hdev));
[all...]
H A Dhid-quanta.c35 static int quanta_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
93 static int quanta_input_mapped(struct hid_device *hdev, struct hid_input *hi, argument
191 static int quanta_probe(struct hid_device *hdev, const struct hid_device_id *id) argument
198 dev_err(&hdev->dev, "cannot allocate Quanta Touch data\n");
205 hid_set_drvdata(hdev, td);
207 ret = hid_parse(hdev);
209 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
217 static void quanta_remove(struct hid_device *hdev) argument
219 hid_hw_stop(hdev);
220 kfree(hid_get_drvdata(hdev));
[all...]
H A Dhid-stantum.c34 static int stantum_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
107 static int stantum_input_mapped(struct hid_device *hdev, struct hid_input *hi, argument
217 static int stantum_probe(struct hid_device *hdev, argument
225 dev_err(&hdev->dev, "cannot allocate Stantum data\n");
231 hid_set_drvdata(hdev, sd);
233 ret = hid_parse(hdev);
235 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
243 static void stantum_remove(struct hid_device *hdev) argument
245 hid_hw_stop(hdev);
246 kfree(hid_get_drvdata(hdev));
[all...]
H A Dhid-drff.c148 static int dr_probe(struct hid_device *hdev, const struct hid_device_id *id) argument
152 dev_dbg(&hdev->dev, "DragonRise Inc. HID hardware probe...");
154 ret = hid_parse(hdev);
156 dev_err(&hdev->dev, "parse failed\n");
160 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT & ~HID_CONNECT_FF);
162 dev_err(&hdev->dev, "hw start failed\n");
166 drff_init(hdev);
H A Dhid-pl.c179 static int pl_probe(struct hid_device *hdev, const struct hid_device_id *id) argument
184 hdev->quirks |= HID_QUIRK_MULTI_INPUT;
186 ret = hid_parse(hdev);
188 dev_err(&hdev->dev, "parse failed\n");
192 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT & ~HID_CONNECT_FF);
194 dev_err(&hdev->dev, "hw start failed\n");
198 plff_init(hdev);
H A Dhid-sjoy.c132 static int sjoy_probe(struct hid_device *hdev, const struct hid_device_id *id) argument
136 ret = hid_parse(hdev);
138 dev_err(&hdev->dev, "parse failed\n");
142 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT & ~HID_CONNECT_FF);
144 dev_err(&hdev->dev, "hw start failed\n");
148 sjoyff_init(hdev);
H A Dhid-gyration.c28 static int gyration_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
53 static int gyration_event(struct hid_device *hdev, struct hid_field *field, argument
57 if (!(hdev->claimed & HID_CLAIMED_INPUT) || !field->hidinput)
H A Dhid-debug.c562 void hid_debug_event(struct hid_device *hdev, char *buf) argument
567 list_for_each_entry(list, &hdev->debug_list, node) {
576 void hid_dump_input(struct hid_device *hdev, struct hid_usage *usage, __s32 value) argument
587 hid_debug_event(hdev, buf);
590 wake_up_interruptible(&hdev->debug_wait);
899 struct hid_device *hdev = f->private; local
903 for (i = 0; i < hdev->rsize; i++)
904 seq_printf(f, "%02x ", hdev->rdesc[i]);
908 hid_dump_device(hdev, f);
910 hid_dump_input_mapping(hdev,
1057 hid_debug_register(struct hid_device *hdev, const char *name) argument
1067 hid_debug_unregister(struct hid_device *hdev) argument
[all...]
H A Dhid-roccat-kone.c809 static int kone_init_specials(struct hid_device *hdev) argument
811 struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
821 dev_err(&hdev->dev, "can't alloc device descriptor\n");
824 hid_set_drvdata(hdev, kone);
828 dev_err(&hdev->dev,
833 retval = roccat_connect(hdev);
835 dev_err(&hdev->dev, "couldn't init char dev\n");
844 dev_err(&hdev->dev, "cannot create sysfs files\n");
848 hid_set_drvdata(hdev, NULL);
858 static void kone_remove_specials(struct hid_device *hdev) argument
873 kone_probe(struct hid_device *hdev, const struct hid_device_id *id) argument
903 kone_remove(struct hid_device *hdev) argument
963 kone_raw_event(struct hid_device *hdev, struct hid_report *report, u8 *data, int size) argument
[all...]
H A Dhid-kensington.c23 static int ks_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
H A Dhid-tmff.c221 static int tm_probe(struct hid_device *hdev, const struct hid_device_id *id) argument
225 ret = hid_parse(hdev);
227 dev_err(&hdev->dev, "parse failed\n");
231 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT & ~HID_CONNECT_FF);
233 dev_err(&hdev->dev, "hw start failed\n");
237 tmff_init(hdev, (void *)id->driver_data);
H A Dhid-chicony.c28 static int ch_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
H A Dhid-topseed.c29 static int ts_input_mapping(struct hid_device *hdev, struct hid_input *hi, argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/bluetooth/
H A Dbtmrvl_debugfs.c363 void btmrvl_debugfs_init(struct hci_dev *hdev) argument
365 struct btmrvl_private *priv = hdev->driver_data;
368 if (!hdev->debugfs)
379 dbg->config_dir = debugfs_create_dir("config", hdev->debugfs);
382 hdev->driver_data, &btmrvl_psmode_fops);
384 hdev->driver_data, &btmrvl_pscmd_fops);
386 hdev->driver_data, &btmrvl_gpiogap_fops);
388 hdev->driver_data, &btmrvl_hsmode_fops);
390 hdev->driver_data, &btmrvl_hscmd_fops);
392 hdev
409 btmrvl_debugfs_remove(struct hci_dev *hdev) argument
[all...]
H A Dbtmrvl_drv.h146 void btmrvl_debugfs_init(struct hci_dev *hdev);
147 void btmrvl_debugfs_remove(struct hci_dev *hdev);
H A Dhci_uart.h63 struct hci_dev *hdev; member in struct:hci_uart
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dhid-debug.h45 struct hid_device *hdev; member in struct:hid_debug_list
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/core/
H A Dusb.h41 extern int usb_hub_claim_port(struct usb_device *hdev, unsigned port,
43 extern int usb_hub_release_port(struct usb_device *hdev, unsigned port,
45 extern void usb_hub_release_all_ports(struct usb_device *hdev, void *owner);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/hardware/eicon/
H A Dxdi_adapter.h12 void *hdev; member in struct:_divas_pci_card_resources
H A Dos_bri.c81 void *hdev; local
97 a->resources.pci.hdev);
107 a->resources.pci.hdev);
119 hdev = a->resources.pci.hdev;
124 PCIread(Bus, Slot, 0x18, &bar2, sizeof(bar2), hdev);
125 PCIread(Bus, Slot, 0x04, &cmd_org, sizeof(cmd_org), hdev);
129 PCIwrite(Bus, Slot, 0x04, &cmd, sizeof(cmd), hdev);
130 PCIwrite(Bus, Slot, 0x18, &bar2_length, sizeof(bar2_length), hdev);
131 PCIread(Bus, Slot, 0x18, &bar2_length, sizeof(bar2_length), hdev);
[all...]
H A Dos_pri.c126 a->resources.pci.hdev);
137 a->resources.pci.hdev);
236 diva_init_dma_map(a->resources.pci.hdev,
317 diva_free_dma_map(a->resources.pci.hdev,
805 void *hdev; local
817 hdev = a->resources.pci.hdev;
818 PCIread(Bus, Slot, 0x04, &cmd_org, sizeof(cmd_org), hdev);
819 PCIwrite(Bus, Slot, 0x04, &cmd, sizeof(cmd), hdev);
821 PCIwrite(Bus, Slot, 0x14, &addr4, sizeof(addr4), hdev);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/bluetooth/
H A Dsco.c102 struct hci_dev *hdev = hcon->hdev; local
117 conn->src = &hdev->bdaddr;
120 if (hdev->sco_mtu > 0)
121 conn->mtu = hdev->sco_mtu;
183 struct hci_dev *hdev; local
188 if (!(hdev = hci_get_route(dst, src)))
191 hci_dev_lock_bh(hdev);
195 if (lmp_esco_capable(hdev) && !disable_esco)
200 hcon = hci_connect(hdev, typ
878 sco_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr, __u8 type) argument
[all...]

Completed in 233 milliseconds

1234