|
From: Anders J. <and...@us...> - 2002-03-01 13:30:29
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
l2cap.c 1.131 1.132=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
* Added BNEP to psm2str function.
* Replaced hardcoded values with global defines.
The diff of the modified file(s):
--- l2cap.c 25 Feb 2002 14:08:36 -0000 1.131
+++ l2cap.c 1 Mar 2002 13:30:27 -0000 1.132
@@ -3323,23 +3323,26 @@
const u8* psm2str(u16 psm)
{
switch (psm) {
- case 1:
+ case SDP_LAYER:
return "SDP";
=20
- case 3:
+ case RFCOMM_LAYER:
return "RFCOMM";
=20
- case 5:
+ case TCS_LAYER:
return "TCS";
=20
- case 0x1231:
+ case L2CAP_TEST_LAYER:
return "TEST";
=20
- case 0x1233:
+ case L2CAP_TEST2_LAYER:
return "TEST-2";
=20
- case 0x4461:
+ case L2CAP_TEST3_LAYER:
return "TEST-3";
+=09=09
+ case BNEP_LAYER:
+ return "BNEP";
=20
default:
return "Unknown";
|