Home
last modified time | relevance | path

Searched refs:hu (Results 1 – 21 of 21) sorted by relevance

/linux-4.1.27/drivers/bluetooth/
Dhci_ldisc.c91 static inline void hci_uart_tx_complete(struct hci_uart *hu, int pkt_type) in hci_uart_tx_complete() argument
93 struct hci_dev *hdev = hu->hdev; in hci_uart_tx_complete()
111 static inline struct sk_buff *hci_uart_dequeue(struct hci_uart *hu) in hci_uart_dequeue() argument
113 struct sk_buff *skb = hu->tx_skb; in hci_uart_dequeue()
116 skb = hu->proto->dequeue(hu); in hci_uart_dequeue()
118 hu->tx_skb = NULL; in hci_uart_dequeue()
123 int hci_uart_tx_wakeup(struct hci_uart *hu) in hci_uart_tx_wakeup() argument
125 if (test_and_set_bit(HCI_UART_SENDING, &hu->tx_state)) { in hci_uart_tx_wakeup()
126 set_bit(HCI_UART_TX_WAKEUP, &hu->tx_state); in hci_uart_tx_wakeup()
132 schedule_work(&hu->write_work); in hci_uart_tx_wakeup()
[all …]
Dhci_bcm.c39 static int bcm_open(struct hci_uart *hu) in bcm_open() argument
43 BT_DBG("hu %p", hu); in bcm_open()
51 hu->priv = bcm; in bcm_open()
55 static int bcm_close(struct hci_uart *hu) in bcm_close() argument
57 struct bcm_data *bcm = hu->priv; in bcm_close()
59 BT_DBG("hu %p", hu); in bcm_close()
65 hu->priv = NULL; in bcm_close()
69 static int bcm_flush(struct hci_uart *hu) in bcm_flush() argument
71 struct bcm_data *bcm = hu->priv; in bcm_flush()
73 BT_DBG("hu %p", hu); in bcm_flush()
[all …]
Dhci_ath.c45 struct hci_uart *hu; member
78 struct hci_uart *hu; in ath_hci_uart_work() local
83 hu = ath->hu; in ath_hci_uart_work()
84 tty = hu->tty; in ath_hci_uart_work()
94 clear_bit(HCI_UART_SENDING, &hu->tx_state); in ath_hci_uart_work()
95 hci_uart_tx_wakeup(hu); in ath_hci_uart_work()
98 static int ath_open(struct hci_uart *hu) in ath_open() argument
102 BT_DBG("hu %p", hu); in ath_open()
110 hu->priv = ath; in ath_open()
111 ath->hu = hu; in ath_open()
[all …]
Dhci_ll.c93 static int send_hcill_cmd(u8 cmd, struct hci_uart *hu) in send_hcill_cmd() argument
97 struct ll_struct *ll = hu->priv; in send_hcill_cmd()
100 BT_DBG("hu %p cmd 0x%x", hu, cmd); in send_hcill_cmd()
121 static int ll_open(struct hci_uart *hu) in ll_open() argument
125 BT_DBG("hu %p", hu); in ll_open()
137 hu->priv = ll; in ll_open()
143 static int ll_flush(struct hci_uart *hu) in ll_flush() argument
145 struct ll_struct *ll = hu->priv; in ll_flush()
147 BT_DBG("hu %p", hu); in ll_flush()
156 static int ll_close(struct hci_uart *hu) in ll_close() argument
[all …]
Dhci_h5.c78 int (*rx_func) (struct hci_uart *hu, u8 c);
101 static void h5_link_control(struct hci_uart *hu, const void *data, size_t len) in h5_link_control() argument
103 struct h5 *h5 = hu->priv; in h5_link_control()
131 struct hci_uart *hu = (struct hci_uart *) arg; in h5_timed_event() local
132 struct h5 *h5 = hu->priv; in h5_timed_event()
136 BT_DBG("%s", hu->hdev->name); in h5_timed_event()
139 h5_link_control(hu, sync_req, sizeof(sync_req)); in h5_timed_event()
143 h5_link_control(hu, conf_req, sizeof(conf_req)); in h5_timed_event()
156 BT_DBG("hu %p retransmitting %u pkts", hu, h5->unack.qlen); in h5_timed_event()
168 hci_uart_tx_wakeup(hu); in h5_timed_event()
[all …]
Dhci_h4.c56 static int h4_open(struct hci_uart *hu) in h4_open() argument
60 BT_DBG("hu %p", hu); in h4_open()
68 hu->priv = h4; in h4_open()
73 static int h4_flush(struct hci_uart *hu) in h4_flush() argument
75 struct h4_struct *h4 = hu->priv; in h4_flush()
77 BT_DBG("hu %p", hu); in h4_flush()
85 static int h4_close(struct hci_uart *hu) in h4_close() argument
87 struct h4_struct *h4 = hu->priv; in h4_close()
89 hu->priv = NULL; in h4_close()
91 BT_DBG("hu %p", hu); in h4_close()
[all …]
Dhci_uart.h61 int (*open)(struct hci_uart *hu);
62 int (*close)(struct hci_uart *hu);
63 int (*flush)(struct hci_uart *hu);
64 int (*setup)(struct hci_uart *hu);
65 int (*recv)(struct hci_uart *hu, const void *data, int len);
66 int (*enqueue)(struct hci_uart *hu, struct sk_buff *skb);
67 struct sk_buff *(*dequeue)(struct hci_uart *hu);
97 int hci_uart_tx_wakeup(struct hci_uart *hu);
98 int hci_uart_init_ready(struct hci_uart *hu);
Dhci_bcsp.c148 static int bcsp_enqueue(struct hci_uart *hu, struct sk_buff *skb) in bcsp_enqueue() argument
150 struct bcsp_struct *bcsp = hu->priv; in bcsp_enqueue()
283 static struct sk_buff *bcsp_dequeue(struct hci_uart *hu) in bcsp_dequeue() argument
285 struct bcsp_struct *bcsp = hu->priv; in bcsp_dequeue()
344 static int bcsp_flush(struct hci_uart *hu) in bcsp_flush() argument
346 BT_DBG("hu %p", hu); in bcsp_flush()
399 static void bcsp_handle_le_pkt(struct hci_uart *hu) in bcsp_handle_le_pkt() argument
401 struct bcsp_struct *bcsp = hu->priv; in bcsp_handle_le_pkt()
418 hci_uart_tx_wakeup(hu); in bcsp_handle_le_pkt()
476 static void bcsp_complete_rx_pkt(struct hci_uart *hu) in bcsp_complete_rx_pkt() argument
[all …]
/linux-4.1.27/Documentation/hwmon/
Dlm7711 Author: Andras BALI <drewie@freemail.hu>
/linux-4.1.27/Documentation/networking/
Dtproxy.txt69 here: http://git.balabit.hu/?p=bazsi/iptables-tproxy.git
Dxfrm_sync.txt3 Krisztian <hidden@balabit.hu> and others and additional patches
/linux-4.1.27/arch/arm/boot/dts/
Dsun4i-a10-pcduino.dts3 * Zoltan HERPAI <wigyori@uid0.hu>
Dsun7i-a20-pcduino3.dts3 * Zoltan HERPAI <wigyori@uid0.hu>
/linux-4.1.27/Documentation/filesystems/
Dromfs.txt156 to romfs-subscribe@shadow.banki.hu, the content is irrelevant.
186 Janos Farkas <chexum@shadow.banki.hu>
/linux-4.1.27/Documentation/x86/
Dentry_64.txt5 http://lkml.kernel.org/r/<20110529191055.GC9835%40elte.hu>
/linux-4.1.27/Documentation/dvb/
Dfaq.txt85 http://mplayerhq.hu/
/linux-4.1.27/Documentation/
Dstable_kernel_rules.txt76 Signed-off-by: Ingo Molnar <mingo@elte.hu>
/linux-4.1.27/arch/ia64/kernel/
Dfsys.S295 (p14) xmpy.hu f8 = f8, f7 // xmpy has 5 cycles latency so use it
Dhead.S1058 xmpy.hu f11=f9,f8 // calculate high 64 bits of 128-bit product
1083 xmpy.hu f11=f9,f8 // calculate high 64 bits of 128-bit product
/linux-4.1.27/
DCREDITS450 E: zboszor@mail.externet.hu
1118 E: chexum@shadow.banki.hu
1776 E: kadlec@blackhole.kfki.hu
2057 M: seasons@falcon.sch.bme.hu
2058 M: seasons@makosteszta.sote.hu
2215 E: loewis@informatik.hu-berlin.de
DMAINTAINERS4276 M: Miklos Szeredi <miklos@szeredi.hu>
4618 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4620 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
6749 M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7346 M: Miklos Szeredi <miklos@szeredi.hu>
7514 M: Mingkai Hu <mingkai.hu@freescale.com>