From 7e813b6181acb362bad1c8077e7805086c557ea4 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Mon, 23 Mar 2026 14:34:25 -0400 Subject: [PATCH] bluetooth: Drop unused int128. This should be done using __int128 if necessary. --- headers/os/bluetooth/bluetooth.h | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/headers/os/bluetooth/bluetooth.h b/headers/os/bluetooth/bluetooth.h index 72f18559de..1ac68edeb3 100644 --- a/headers/os/bluetooth/bluetooth.h +++ b/headers/os/bluetooth/bluetooth.h @@ -37,14 +37,7 @@ typedef struct { } __attribute__((packed)) linkkey_t; -/* 128 integer type needed for SDP */ -struct int128 { - int8 b[16]; -}; -typedef struct int128 int128; -typedef struct int128 uint128; - -/* Protocol definitions - add to as required... */ +/* Protocol definitions */ #define BLUETOOTH_PROTO_HCI 134 /* HCI protocol number */ #define BLUETOOTH_PROTO_L2CAP 135 /* L2CAP protocol number */ #define BLUETOOTH_PROTO_RFCOMM 136 /* RFCOMM protocol number */