/linux-4.1.27/drivers/bluetooth/ |
D | hci_ldisc.c | 91 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 …]
|
D | hci_bcm.c | 39 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 …]
|
D | hci_ath.c | 45 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 …]
|
D | hci_ll.c | 93 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 …]
|
D | hci_h5.c | 78 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 …]
|
D | hci_h4.c | 56 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 …]
|
D | hci_uart.h | 61 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);
|
D | hci_bcsp.c | 148 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/ |
D | lm77 | 11 Author: Andras BALI <drewie@freemail.hu>
|
/linux-4.1.27/Documentation/networking/ |
D | tproxy.txt | 69 here: http://git.balabit.hu/?p=bazsi/iptables-tproxy.git
|
D | xfrm_sync.txt | 3 Krisztian <hidden@balabit.hu> and others and additional patches
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | sun4i-a10-pcduino.dts | 3 * Zoltan HERPAI <wigyori@uid0.hu>
|
D | sun7i-a20-pcduino3.dts | 3 * Zoltan HERPAI <wigyori@uid0.hu>
|
/linux-4.1.27/Documentation/filesystems/ |
D | romfs.txt | 156 to romfs-subscribe@shadow.banki.hu, the content is irrelevant. 186 Janos Farkas <chexum@shadow.banki.hu>
|
/linux-4.1.27/Documentation/x86/ |
D | entry_64.txt | 5 http://lkml.kernel.org/r/<20110529191055.GC9835%40elte.hu>
|
/linux-4.1.27/Documentation/dvb/ |
D | faq.txt | 85 http://mplayerhq.hu/
|
/linux-4.1.27/Documentation/ |
D | stable_kernel_rules.txt | 76 Signed-off-by: Ingo Molnar <mingo@elte.hu>
|
/linux-4.1.27/arch/ia64/kernel/ |
D | fsys.S | 295 (p14) xmpy.hu f8 = f8, f7 // xmpy has 5 cycles latency so use it
|
D | head.S | 1058 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/ |
D | CREDITS | 450 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
|
D | MAINTAINERS | 4276 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>
|