Home | History | Annotate | Download | only in i2c
History log of /src/sys/dev/i2c/lg3303.c
RevisionDateAuthorComments
 1.10  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.9  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.8  02-Oct-2011  jmcneill branches: 1.8.12; 1.8.28; 1.8.30;
now that iic is a module, add "iic" dependency to iic drivers
 1.7  09-Aug-2011  jmcneill lg3303 should depend on dtv_math, not xc3028
 1.6  09-Aug-2011  jmcneill add dtv_math.h
 1.5  15-Jul-2011  jmcneill add lg3303_get_snr, lg3303_get_signal_strength, lg3303_get_ucblocks
 1.4  15-Jul-2011  jmcneill lg3303_set_modulation: program the requested modulation on every request
 1.3  15-Jul-2011  jmcneill if no carrier, other status fields are invalid
 1.2  14-Jul-2011  jmcneill add a flags argument to lg3303, and use it for the caller to request
serial mpeg mode
 1.1  11-Jul-2011  jmcneill add LGDT3303 tuner and XC3028L demod drivers
 1.8.30.2  28-Aug-2017  skrll Sync with HEAD
 1.8.30.1  06-Apr-2015  skrll Sync with HEAD
 1.8.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.8.12.1  03-Dec-2017  jdolecek update from HEAD

RSS XML Feed