summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/bluetooth/common/ng_bluetooth.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix multiple incorrect SYSCTL arguments in the kernel:hselasky2014-10-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Wrong integer type was specified. - Wrong or missing "access" specifier. The "access" specifier sometimes included the SYSCTL type, which it should not, except for procedural SYSCTL nodes. - Logical OR where binary OR was expected. - Properly assert the "access" argument passed to all SYSCTL macros, using the CTASSERT macro. This applies to both static- and dynamically created SYSCTLs. - Properly assert the the data type for both static and dynamic SYSCTLs. In the case of static SYSCTLs we only assert that the data pointed to by the SYSCTL data pointer has the correct size, hence there is no easy way to assert types in the C language outside a C-function. - Rewrote some code which doesn't pass a constant "access" specifier when creating dynamic SYSCTL nodes, which is now a requirement. - Updated "EXAMPLES" section in SYSCTL manual page. MFC after: 3 days Sponsored by: Mellanox Technologies
* sysctl(9) cleanup checkpoint: amd64 GENERIC builds cleanly.mdf2011-01-121-1/+1
| | | | Commit the netgraph piece.
* Fill in the string portion of the bluetooth stack version sysctl.trhodes2008-07-141-1/+1
| | | | Approved by: emax
* Get in some basic infrastructure for Bluetooth SCO support.emax2008-07-101-0/+38
| | | | MFC after: 3 months
* Despite several examples in the kernel, the third argument ofdwmalone2007-06-041-4/+4
| | | | | | | | | | | | | sysctl_handle_int is not sizeof the int type you want to export. The type must always be an int or an unsigned int. Remove the instances where a sizeof(variable) is passed to stop people accidently cut and pasting these examples. In a few places this was sysctl_handle_int was being used on 64 bit types, which would truncate the value to be exported. In these cases use sysctl_handle_quad to export them and change the format to Q so that sysctl(1) can still print them.
* Change the embedded module name from "bluetooth" to "ng_bluetooth" to matchpeter2005-04-081-1/+1
| | | | the rest of the names assigned to this object.
* /* -> /*- for license, minor formatting changesimp2005-01-071-1/+3
|
* add missing #include <sys/module.h>phk2004-05-301-0/+1
|
* Address few style issues pointed out by bdeemax2004-04-271-1/+1
| | | | Reviewed by: bde, ru
* Part one of undating the bluetooth code to the newest versionjulian2003-05-101-12/+8
| | | | | Submitted by: Maksim Yevmenkin <m_evmenkin@yahoo.com> Approved by: re@
* The second try a committing the bluetooth codejulian2002-11-201-0/+254
Has been seen to work on several cards and communicating with several mobile phones to use them as modems etc. We are still talking with 3com to try get them to allow us to include the firmware for their pccard in the driver but the driver is here.. In the mean time it can be downloaded from the 3com website and loaded using the utility bt3cfw(8) (supplied) (instructions in the man page) Not yet linked to the build Submitted by: Maksim Yevmenkin <myevmenk@exodus.net> Approved by: re
OpenPOWER on IntegriCloud