/linux-4.4.14/drivers/bluetooth/ |
D | hci_ldisc.c | 92 static inline void hci_uart_tx_complete(struct hci_uart *hu, int pkt_type) in hci_uart_tx_complete() argument 94 struct hci_dev *hdev = hu->hdev; in hci_uart_tx_complete() 112 static inline struct sk_buff *hci_uart_dequeue(struct hci_uart *hu) in hci_uart_dequeue() argument 114 struct sk_buff *skb = hu->tx_skb; in hci_uart_dequeue() 117 skb = hu->proto->dequeue(hu); in hci_uart_dequeue() 119 hu->tx_skb = NULL; in hci_uart_dequeue() 124 int hci_uart_tx_wakeup(struct hci_uart *hu) in hci_uart_tx_wakeup() argument 126 if (test_and_set_bit(HCI_UART_SENDING, &hu->tx_state)) { in hci_uart_tx_wakeup() 127 set_bit(HCI_UART_TX_WAKEUP, &hu->tx_state); in hci_uart_tx_wakeup() 133 schedule_work(&hu->write_work); in hci_uart_tx_wakeup() [all …]
|
D | hci_qca.c | 76 struct hci_uart *hu; member 131 static void serial_clock_vote(unsigned long vote, struct hci_uart *hu) in serial_clock_vote() argument 133 struct qca_data *qca = hu->priv; in serial_clock_vote() 180 __serial_clock_on(hu->tty); in serial_clock_vote() 182 __serial_clock_off(hu->tty); in serial_clock_vote() 203 static int send_hci_ibs_cmd(u8 cmd, struct hci_uart *hu) in send_hci_ibs_cmd() argument 207 struct qca_data *qca = hu->priv; in send_hci_ibs_cmd() 209 BT_DBG("hu %p send hci ibs cmd 0x%x", hu, cmd); in send_hci_ibs_cmd() 229 struct hci_uart *hu = qca->hu; in qca_wq_awake_device() local 232 BT_DBG("hu %p wq awake device", hu); in qca_wq_awake_device() [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_bcm.c | 66 struct hci_uart *hu; member 82 static int bcm_set_baudrate(struct hci_uart *hu, unsigned int speed) in bcm_set_baudrate() argument 84 struct hci_dev *hdev = hu->hdev; in bcm_set_baudrate() 226 static int bcm_setup_sleep(struct hci_uart *hu) in bcm_setup_sleep() argument 228 struct bcm_data *bcm = hu->priv; in bcm_setup_sleep() 234 skb = __hci_cmd_sync(hu->hdev, 0xfc27, sizeof(sleep_params), in bcm_setup_sleep() 238 bt_dev_err(hu->hdev, "Sleep VSC failed (%d)", err); in bcm_setup_sleep() 243 bt_dev_dbg(hu->hdev, "Set Sleep Parameters VSC succeeded"); in bcm_setup_sleep() 249 static inline int bcm_setup_sleep(struct hci_uart *hu) { return 0; } in bcm_setup_sleep() argument 254 struct hci_uart *hu = hci_get_drvdata(hdev); in bcm_set_diag() local [all …]
|
D | hci_intel.c | 74 struct hci_uart *hu; member 86 struct hci_uart *hu; member 122 static int intel_wait_booting(struct hci_uart *hu) in intel_wait_booting() argument 124 struct intel_data *intel = hu->priv; in intel_wait_booting() 132 bt_dev_err(hu->hdev, "Device boot interrupted"); in intel_wait_booting() 137 bt_dev_err(hu->hdev, "Device boot timeout"); in intel_wait_booting() 145 static int intel_wait_lpm_transaction(struct hci_uart *hu) in intel_wait_lpm_transaction() argument 147 struct intel_data *intel = hu->priv; in intel_wait_lpm_transaction() 155 bt_dev_err(hu->hdev, "LPM transaction interrupted"); in intel_wait_lpm_transaction() 160 bt_dev_err(hu->hdev, "LPM transaction timeout"); in intel_wait_lpm_transaction() [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 | 65 int (*open)(struct hci_uart *hu); 66 int (*close)(struct hci_uart *hu); 67 int (*flush)(struct hci_uart *hu); 68 int (*setup)(struct hci_uart *hu); 69 int (*set_baudrate)(struct hci_uart *hu, unsigned int speed); 70 int (*recv)(struct hci_uart *hu, const void *data, int len); 71 int (*enqueue)(struct hci_uart *hu, struct sk_buff *skb); 72 struct sk_buff *(*dequeue)(struct hci_uart *hu); 104 int hci_uart_tx_wakeup(struct hci_uart *hu); 105 int hci_uart_init_ready(struct hci_uart *hu); [all …]
|
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.4.14/Documentation/hwmon/ |
D | lm77 | 11 Author: Andras BALI <drewie@freemail.hu>
|
/linux-4.4.14/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.4.14/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.4.14/arch/arm/boot/dts/ |
D | sun7i-a20-pcduino3.dts | 3 * Zoltan HERPAI <wigyori@uid0.hu>
|
D | sun4i-a10-pcduino.dts | 3 * Zoltan HERPAI <wigyori@uid0.hu>
|
/linux-4.4.14/Documentation/x86/ |
D | entry_64.txt | 5 http://lkml.kernel.org/r/<20110529191055.GC9835%40elte.hu>
|
/linux-4.4.14/Documentation/dvb/ |
D | faq.txt | 85 http://mplayerhq.hu/
|
/linux-4.4.14/Documentation/ |
D | stable_kernel_rules.txt | 85 Signed-off-by: Ingo Molnar <mingo@elte.hu>
|
/linux-4.4.14/arch/ia64/kernel/ |
D | fsys.S | 295 (p14) xmpy.hu f8 = f8, f7 // xmpy has 5 cycles latency so use it
|
D | head.S | 1022 xmpy.hu f11=f9,f8 // calculate high 64 bits of 128-bit product 1041 xmpy.hu f11=f9,f8 // calculate high 64 bits of 128-bit product
|
/linux-4.4.14/ |
D | CREDITS | 454 E: zboszor@mail.externet.hu 1122 E: chexum@shadow.banki.hu 1780 E: kadlec@blackhole.kfki.hu 2061 M: seasons@falcon.sch.bme.hu 2062 M: seasons@makosteszta.sote.hu 2219 E: loewis@informatik.hu-berlin.de
|
D | MAINTAINERS | 4612 M: Miklos Szeredi <miklos@szeredi.hu> 4967 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> 4969 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml 7335 M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> 7967 M: Miklos Szeredi <miklos@szeredi.hu> 8145 M: Mingkai Hu <mingkai.hu@freescale.com>
|