Diff between f4f6f2290826ed7fc4d231b18aaff978ac12b277 and 6861b49c188532fa9499a8b19ee461bae1371e59

Changed Files

File Additions Deletions Status
lib/mgmt.h +0 -25 modified

Full Patch

diff --git a/lib/mgmt.h b/lib/mgmt.h
index 1cdb80f..e28005e 100644
--- a/lib/mgmt.h
+++ b/lib/mgmt.h
@@ -570,28 +570,3 @@ static inline const char *mgmt_errstr(uint8_t status)
 		return "<unknown status>";
 	return mgmt_status[status];
 }
-
-static inline bool mgmt_powered(uint32_t settings)
-{
-	return (settings & MGMT_SETTING_POWERED);
-}
-
-static inline bool mgmt_connectable(uint32_t settings)
-{
-	return (settings & MGMT_SETTING_CONNECTABLE);
-}
-
-static inline bool mgmt_fast_connectable(uint32_t settings)
-{
-	return (settings & MGMT_SETTING_FAST_CONNECTABLE);
-}
-
-static inline bool mgmt_discoverable(uint32_t settings)
-{
-	return (settings & MGMT_SETTING_DISCOVERABLE);
-}
-
-static inline bool mgmt_pairable(uint32_t settings)
-{
-	return (settings & MGMT_SETTING_PAIRABLE);
-}