summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2005-06-21 16:47:29 +0000
committerMarcel Holtmann <marcel@holtmann.org>2005-06-21 16:47:29 +0000
commit654718757db545ba3e0317d1588595cd486c3436 (patch)
tree595526f6abf763af5e5f54906577be4a5ba698ca /include
parentba65f7a41c24a3161cceec9a55ed363dc835365d (diff)
Remove hci_uart.h header file
Diffstat (limited to 'include')
-rw-r--r--include/Makefile.am4
-rw-r--r--include/hci_uart.h55
2 files changed, 2 insertions, 57 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
index c8a4973e..ab67cf59 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -5,8 +5,8 @@
includedir = @includedir@/bluetooth
include_HEADERS = \
- bluetooth.h hci.h hci_lib.h hci_uart.h sco.h \
- l2cap.h rfcomm.h sdp.h sdp_lib.h bnep.h cmtp.h hidp.h
+ bluetooth.h hci.h hci_lib.h sco.h l2cap.h \
+ sdp.h sdp_lib.h rfcomm.h bnep.h cmtp.h hidp.h
MAINTAINERCLEANFILES = Makefile.in
diff --git a/include/hci_uart.h b/include/hci_uart.h
deleted file mode 100644
index c7575586..00000000
--- a/include/hci_uart.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- *
- * BlueZ - Bluetooth protocol stack for Linux
- *
- * Copyright (C) 2002-2003 Maxim Krasnyansky <maxk@qualcomm.com>
- * Copyright (C) 2002-2005 Marcel Holtmann <marcel@holtmann.org>
- *
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation;
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
- * IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
- * CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- *
- * ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
- * COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
- * SOFTWARE IS DISCLAIMED.
- *
- *
- * $Id$
- */
-
-#ifndef __HCI_UART_H
-#define __HCI_UART_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#ifndef N_HCI
-#define N_HCI 15
-#endif
-
-/* Ioctls */
-#define HCIUARTSETPROTO _IOW('U', 200, int)
-#define HCIUARTGETPROTO _IOR('U', 201, int)
-
-/* UART protocols */
-#define HCI_UART_H4 0
-#define HCI_UART_BCSP 1
-#define HCI_UART_3WIRE 2
-#define HCI_UART_H4DS 3
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* __HCI_UART_H */