af_bluetooth.c (ad34ea2cc3845ef4dcd7d12fb0fa8484734bd672) | af_bluetooth.c (6516455d3b42b33759a33a8102c1b8b48af4d9c9) |
---|---|
1/* 2 BlueZ - Bluetooth protocol stack for Linux 3 Copyright (C) 2000-2001 Qualcomm Incorporated 4 5 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com> 6 7 This program is free software; you can redistribute it and/or modify 8 it under the terms of the GNU General Public License version 2 as --- 294 unchanged lines hidden (view full) --- 303EXPORT_SYMBOL(bt_sock_wait_state); 304 305static struct net_proto_family bt_sock_family_ops = { 306 .owner = THIS_MODULE, 307 .family = PF_BLUETOOTH, 308 .create = bt_sock_create, 309}; 310 | 1/* 2 BlueZ - Bluetooth protocol stack for Linux 3 Copyright (C) 2000-2001 Qualcomm Incorporated 4 5 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com> 6 7 This program is free software; you can redistribute it and/or modify 8 it under the terms of the GNU General Public License version 2 as --- 294 unchanged lines hidden (view full) --- 303EXPORT_SYMBOL(bt_sock_wait_state); 304 305static struct net_proto_family bt_sock_family_ops = { 306 .owner = THIS_MODULE, 307 .family = PF_BLUETOOTH, 308 .create = bt_sock_create, 309}; 310 |
311extern int hci_sock_init(void); 312extern int hci_sock_cleanup(void); 313 314extern int bt_sysfs_init(void); 315extern int bt_sysfs_cleanup(void); 316 | |
317static int __init bt_init(void) 318{ 319 BT_INFO("Core ver %s", VERSION); 320 321 proc_bt = proc_mkdir("bluetooth", NULL); 322 if (proc_bt) 323 proc_bt->owner = THIS_MODULE; 324 --- 30 unchanged lines hidden --- | 311static int __init bt_init(void) 312{ 313 BT_INFO("Core ver %s", VERSION); 314 315 proc_bt = proc_mkdir("bluetooth", NULL); 316 if (proc_bt) 317 proc_bt->owner = THIS_MODULE; 318 --- 30 unchanged lines hidden --- |