change(bt/bluedroid): Remove a duplicate macro in OBEX

This commit is contained in:
linruihao
2024-11-27 19:57:52 +08:00
parent c28703c919
commit 88913c8ba5
2 changed files with 8 additions and 12 deletions

View File

@@ -30,10 +30,6 @@
#define OBEX_STATE_OPENING 1 /* Starting to open a connection */
#define OBEX_STATE_OPENED 2 /* Connection opened */
/* Store 16 bits data in big endian format, not modify the p_buf */
#define STORE16BE(p_buf, data) do { *p_buf = ((data)>>8)&0xff; \
*(p_buf+1) = (data)&0xff;} while(0)
/* OBEX Connection Control block */
typedef struct {
tOBEX_MSG_CBACK *callback; /* Connection msg callback function */