Home | History | Annotate | Download | only in i2c
History log of /src/sys/dev/i2c/au8522.c
RevisionDateAuthorComments
 1.8  01-Jun-2017  chs remove checks for failure after memory allocation calls that cannot fail:

kmem_alloc() with KM_SLEEP
kmem_zalloc() with KM_SLEEP
percpu_alloc()
pserialize_create()
psref_class_create()

all of these paths include an assertion that the allocation has not failed,
so callers should not assert that again.
 1.7  07-Mar-2015  jmcneill i2c devices don't actually have a dependency on "iic" (the bus driver)
but on "i2cexec". Create an i2cexec module (i2c_exec.c) to mirror the
dependencies in files.i2c and switch device drivers to depend on "i2cexec"
module instead.

A kernel with a USB stack and no I2C controller / bus attachment would spit
out a bunch of "WARNING: module error: can't find builtin dependency `iic'"
messages at boot. This change solves that problem.
 1.6  02-Oct-2011  jmcneill branches: 1.6.12; 1.6.28; 1.6.30;
now that iic is a module, add "iic" dependency to iic drivers
 1.5  10-Jul-2011  jmcneill add snr reporting
 1.4  09-Jul-2011  jmcneill add digital capture support
 1.3  26-May-2011  jmcneill add a function to mute/unmute the audio input
 1.2  28-Dec-2010  jmcneill branches: 1.2.2; 1.2.6;
don't make module declaration conditional on _MODULE
 1.1  27-Dec-2010  jmcneill add driver for the Auvitek AU0828 USB video controllers's analog video
capture functions:

auvitek0 at uhub6 port 2: AU0828
video0 at auvitek0: WinTV HVR-950Q
uaudio0 at auvitek0 port 2 configuration 1 interface 1
uaudio0: vendor 0x2040 product 0x7200, rev 2.00/0.05, addr 2
uaudio0: audio rev 1.00
audio1 at uaudio0: full duplex, playback, capture, independent
 1.2.6.3  31-May-2011  rmind sync with head
 1.2.6.2  05-Mar-2011  rmind sync with head
 1.2.6.1  28-Dec-2010  rmind file au8522.c was added on branch rmind-uvmplock on 2011-03-05 20:53:10 +0000
 1.2.2.1  06-Jun-2011  jruoho Sync with HEAD.
 1.6.30.2  28-Aug-2017  skrll Sync with HEAD
 1.6.30.1  06-Apr-2015  skrll Sync with HEAD
 1.6.28.1  21-Mar-2015  snj Pull up following revision(s) (requested by jmcneill in ticket #634):
distrib/sets/lists/modules/md.amd64: revision 1.51
distrib/sets/lists/modules/md.evbppc.powerpc: revision 1.5
distrib/sets/lists/modules/md.i386: revision 1.55
distrib/sets/lists/modules/mi: revision 1.71
sys/dev/i2c/au8522.c: revision 1.7
sys/dev/i2c/cx24227.c: revision 1.7
sys/dev/i2c/dbcool.c: revision 1.42
sys/dev/i2c/hytp14.c: revision 1.3
sys/dev/i2c/i2c_exec.c: revision 1.10
sys/dev/i2c/lg3303.c: revision 1.9
sys/dev/i2c/mt2131.c: revision 1.5
sys/dev/i2c/nxt2k.c: revision 1.4
sys/dev/i2c/sdtemp.c: revision 1.24
sys/dev/i2c/spdmem_i2c.c: revision 1.10
sys/dev/i2c/tvpll.c: revision 1.6
sys/dev/i2c/xc3028.c: revision 1.7
sys/dev/i2c/xc5k.c: revision 1.6
sys/dev/i2c/zl10353.c: revision 1.4
sys/modules/Makefile: revision 1.143
sys/modules/i2cexec/Makefile: revision 1.1
i2c devices don't actually have a dependency on "iic" (the bus driver)
but on "i2cexec". Create an i2cexec module (i2c_exec.c) to mirror the
dependencies in files.i2c and switch device drivers to depend on "i2cexec"
module instead.
A kernel with a USB stack and no I2C controller / bus attachment would spit
out a bunch of "WARNING: module error: can't find builtin dependency `iic'"
messages at boot. This change solves that problem.
 1.6.12.1  03-Dec-2017  jdolecek update from HEAD

RSS XML Feed