|
From: Peter K. <pk...@us...> - 2001-09-19 10:16:28
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
sdp.c 1.78 1.79=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
* Removed unused typedefs attr_id, uuid_struct and attr_struct.
* Removed packed attribute from database_query again.
The diff of the modified file(s):
--- sdp.c 2001/09/18 08:32:50 1.78
+++ sdp.c 2001/09/19 10:16:27 1.79
@@ -138,22 +138,6 @@
=20
/****************** TYPE DEFINITION SECTION ******************************=
***/
=20
-typedef struct attr_id {
- u32 size:3; /* Least significant comes first in struct */
- u32 type:5;
- u8 data[0];
-} attr_id;
-
-typedef struct uuid_struct {
- u32 len;
- u8 *uuid;
-} uuid_struct;
-
-typedef struct attr_struct {
- u8 range;
- u8 *attr;
-} attr_struct;
-
/****************** LOCAL FUNCTION DECLARATION SECTION *******************=
***/
=20
static sdp_con* get_free_sdp_con(void);
@@ -299,7 +283,7 @@
struct database_query {
u32 count;
u8 query[256];
-} __attribute__ ((packed)) database_query;
+} database_query;
=20
sdp_con sdp_con_list[MAX_NBR_SDP];
=20
|