Module Name:src
Committed By: riastradh
Date: Tue Aug 1 19:36:46 UTC 2023
Modified Files:
src/sys/dev/i2c: ihidev.c
Log Message:
ihidev(4): Use iic_use_direct_match as intended.
This appears to have been a mistake; there's no obvious explanation
in the commit history
Module Name:src
Committed By: riastradh
Date: Tue Aug 1 19:36:46 UTC 2023
Modified Files:
src/sys/dev/i2c: ihidev.c
Log Message:
ihidev(4): Use iic_use_direct_match as intended.
This appears to have been a mistake; there's no obvious explanation
in the commit history
Module Name:src
Committed By: riastradh
Date: Wed May 10 00:10:02 UTC 2023
Modified Files:
src/sys/dev/i2c: ims.c
Log Message:
ims(4): Use config_detach_children.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/i2c/ims.c
Please note that diffs
Module Name:src
Committed By: riastradh
Date: Wed May 10 00:10:02 UTC 2023
Modified Files:
src/sys/dev/i2c: ims.c
Log Message:
ims(4): Use config_detach_children.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/i2c/ims.c
Please note that diffs
Module Name:src
Committed By: mlelstv
Date: Tue Jan 24 07:09:48 UTC 2023
Modified Files:
src/sys/dev/i2c: ds1307.c
Log Message:
Don't panic with invalid user data, just return an error.
To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40
Module Name:src
Committed By: mlelstv
Date: Tue Jan 24 07:09:48 UTC 2023
Modified Files:
src/sys/dev/i2c: ds1307.c
Log Message:
Don't panic with invalid user data, just return an error.
To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40
Module Name:src
Committed By: andvar
Date: Mon Jan 23 22:20:59 UTC 2023
Modified Files:
src/sys/dev/i2c: m41st84reg.h
Log Message:
fix typos in comments.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/i2c/m41st84reg.h
Please note that diffs are
Module Name:src
Committed By: andvar
Date: Mon Jan 23 22:20:59 UTC 2023
Modified Files:
src/sys/dev/i2c: m41st84reg.h
Log Message:
fix typos in comments.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/i2c/m41st84reg.h
Please note that diffs are
Module Name:src
Committed By: brad
Date: Thu Dec 1 02:29:37 UTC 2022
Modified Files:
src/sys/dev/i2c: bmx280.c
Log Message:
Use a better choice for the print format string.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/dev/i2c/bmx280.c
Please
Module Name:src
Committed By: brad
Date: Thu Dec 1 02:29:37 UTC 2022
Modified Files:
src/sys/dev/i2c: bmx280.c
Log Message:
Use a better choice for the print format string.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/dev/i2c/bmx280.c
Please
Module Name:src
Committed By: brad
Date: Thu Dec 1 00:47:51 UTC 2022
Modified Files:
src/sys/dev/i2c: bmx280.c
Log Message:
Correct the humidity conversion for the BME280
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/i2c/bmx280.c
Please note
Module Name:src
Committed By: brad
Date: Thu Dec 1 00:47:51 UTC 2022
Modified Files:
src/sys/dev/i2c: bmx280.c
Log Message:
Correct the humidity conversion for the BME280
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/i2c/bmx280.c
Please note
Module Name:src
Committed By: brad
Date: Thu Nov 24 21:07:05 UTC 2022
Modified Files:
src/sys/dev/i2c: bmx280.c
Log Message:
Mention where in the datasheet the compensation algorithms came from.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4
Module Name:src
Committed By: brad
Date: Thu Nov 24 21:07:05 UTC 2022
Modified Files:
src/sys/dev/i2c: bmx280.c
Log Message:
Mention where in the datasheet the compensation algorithms came from.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4
Taylor R Campbell writes:
[snip]
> The issue here isn't the duration of the delay -- just the mechanism.
> Sleeping for 35ms with kpause(9) is fine, but busy-waiting on the CPU
> for 35ms with delay(9) is not (unless HZ is set to something absurdly
> low like 10 instead of the usual 100, but I
> Date: Wed, 23 Nov 2022 01:42:13 -0500
> From: Brad Spencer
>
> Simon Burge writes:
>
> > + delay(35000);
> >
> > This will spin for 35 milliseconds (per sensor read if I read this
> > correctly). Can you please look at using kpause(9) for this delay?
> > See some other i2c drivers for
Simon Burge writes:
> Hi Brad,
>
>> Module Name: src
>> Committed By:brad
>> Date:Tue Nov 22 19:40:31 UTC 2022
>>
>> Modified Files:
>>
>> src/sys/dev/i2c: bmx280.c
>>
>> Log Message:
>>
>> Read the datasheet more closely and put in some delays. The chip will
>>
Hi Brad,
> Module Name: src
> Committed By: brad
> Date: Tue Nov 22 19:40:31 UTC 2022
>
> Modified Files:
>
> src/sys/dev/i2c: bmx280.c
>
> Log Message:
>
> Read the datasheet more closely and put in some delays. The chip will
> just return junk if the wait is not long enough to
Module Name:src
Committed By: brad
Date: Tue Nov 22 19:40:31 UTC 2022
Modified Files:
src/sys/dev/i2c: bmx280.c
Log Message:
Read the datasheet more closely and put in some delays. The chip will
just return junk if the wait is not long enough to allow a measurement
to
Module Name:src
Committed By: brad
Date: Tue Nov 22 19:40:31 UTC 2022
Modified Files:
src/sys/dev/i2c: bmx280.c
Log Message:
Read the datasheet more closely and put in some delays. The chip will
just return junk if the wait is not long enough to allow a measurement
to
Module Name:src
Committed By: jmcneill
Date: Sun Oct 30 11:51:20 UTC 2022
Modified Files:
src/sys/dev/i2c: axppmic.c
Log Message:
Add GPIO support.
PR# kern/57030
To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/sys/dev/i2c/axppmic.c
Please note that
Module Name:src
Committed By: jmcneill
Date: Sun Oct 30 11:51:20 UTC 2022
Modified Files:
src/sys/dev/i2c: axppmic.c
Log Message:
Add GPIO support.
PR# kern/57030
To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/sys/dev/i2c/axppmic.c
Please note that
Module Name:src
Committed By: riastradh
Date: Mon Oct 24 10:17:40 UTC 2022
Modified Files:
src/sys/dev/i2c: i2c.c
Log Message:
iic(4): Use config_detach_children to simplify.
To generate a diff of this commit:
cvs rdiff -u -r1.89 -r1.90 src/sys/dev/i2c/i2c.c
Please
Module Name:src
Committed By: riastradh
Date: Mon Oct 24 10:17:40 UTC 2022
Modified Files:
src/sys/dev/i2c: i2c.c
Log Message:
iic(4): Use config_detach_children to simplify.
To generate a diff of this commit:
cvs rdiff -u -r1.89 -r1.90 src/sys/dev/i2c/i2c.c
Please
Module Name:src
Committed By: thorpej
Date: Sat Jul 23 03:05:27 UTC 2022
Modified Files:
src/sys/dev/i2c: i2c.c
Log Message:
If there is a compat string list, parenthetically print the first one
in iic_print_direct(). (From thorpej-i2c-spi-conf2 branch.)
To generate a
Module Name:src
Committed By: thorpej
Date: Sat Jul 23 03:05:27 UTC 2022
Modified Files:
src/sys/dev/i2c: i2c.c
Log Message:
If there is a compat string list, parenthetically print the first one
in iic_print_direct(). (From thorpej-i2c-spi-conf2 branch.)
To generate a
Module Name:src
Committed By: thorpej
Date: Wed Jul 20 22:58:35 UTC 2022
Modified Files:
src/sys/dev/i2c: pcai2cmux.c
Log Message:
Improve error reporting.
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/dev/i2c/pcai2cmux.c
Please note that diffs
Module Name:src
Committed By: thorpej
Date: Wed Jul 20 22:58:35 UTC 2022
Modified Files:
src/sys/dev/i2c: pcai2cmux.c
Log Message:
Improve error reporting.
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/dev/i2c/pcai2cmux.c
Please note that diffs
Module Name:src
Committed By: andvar
Date: Sat Jul 2 16:28:39 UTC 2022
Modified Files:
src/sys/dev/i2c: lm87.c
Log Message:
s/tempurature/temperature/
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/dev/i2c/lm87.c
Please note that diffs are not
Module Name:src
Committed By: andvar
Date: Sat Jul 2 16:28:39 UTC 2022
Modified Files:
src/sys/dev/i2c: lm87.c
Log Message:
s/tempurature/temperature/
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/dev/i2c/lm87.c
Please note that diffs are not
Module Name:src
Committed By: mlelstv
Date: Wed Jun 29 15:34:15 UTC 2022
Modified Files:
src/sys/dev/i2c: i2c_io.h
Log Message:
Bump max transaction size from 32 Bytes to 4kB.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/i2c/i2c_io.h
Please
Module Name:src
Committed By: mlelstv
Date: Wed Jun 29 15:34:15 UTC 2022
Modified Files:
src/sys/dev/i2c: i2c_io.h
Log Message:
Bump max transaction size from 32 Bytes to 4kB.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/i2c/i2c_io.h
Please
Module Name:src
Committed By: mlelstv
Date: Wed Jun 29 15:33:45 UTC 2022
Modified Files:
src/sys/dev/i2c: i2c.c
Log Message:
Allocate data buffer instead of using the stack.
To generate a diff of this commit:
cvs rdiff -u -r1.86 -r1.87 src/sys/dev/i2c/i2c.c
Please note
Module Name:src
Committed By: mlelstv
Date: Wed Jun 29 15:33:45 UTC 2022
Modified Files:
src/sys/dev/i2c: i2c.c
Log Message:
Allocate data buffer instead of using the stack.
To generate a diff of this commit:
cvs rdiff -u -r1.86 -r1.87 src/sys/dev/i2c/i2c.c
Please note
Module Name:src
Committed By: pgoyette
Date: Wed Mar 30 00:06:51 UTC 2022
Modified Files:
src/sys/dev/i2c: am2315.c dbcool.c hytp14.c scmdi2c.c sgp40.c sht3x.c
sht4x.c si70xx.c spdmem_i2c.c
Log Message:
These modules need to depend on iic, not just on i2cexec.
Module Name:src
Committed By: pgoyette
Date: Wed Mar 30 00:06:51 UTC 2022
Modified Files:
src/sys/dev/i2c: am2315.c dbcool.c hytp14.c scmdi2c.c sgp40.c sht3x.c
sht4x.c si70xx.c spdmem_i2c.c
Log Message:
These modules need to depend on iic, not just on i2cexec.
Module Name:src
Committed By: thorpej
Date: Mon Jan 17 19:34:31 UTC 2022
Modified Files:
src/sys/dev/i2c: i2c.c
Log Message:
Minimal hack to pass child devices a devhandle created from the OF
or ACPI "cookie". Temporary measure until the i2c autoconfiguration
overhaul is
Module Name:src
Committed By: thorpej
Date: Mon Jan 17 19:34:31 UTC 2022
Modified Files:
src/sys/dev/i2c: i2c.c
Log Message:
Minimal hack to pass child devices a devhandle created from the OF
or ACPI "cookie". Temporary measure until the i2c autoconfiguration
overhaul is
Module Name:src
Committed By: skrll
Date: Sat Jan 15 06:22:30 UTC 2022
Modified Files:
src/sys/dev/i2c: ihidev.c
Log Message:
Trailing whitespace
To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/sys/dev/i2c/ihidev.c
Please note that diffs are not
Module Name:src
Committed By: skrll
Date: Sat Jan 15 06:22:30 UTC 2022
Modified Files:
src/sys/dev/i2c: ihidev.c
Log Message:
Trailing whitespace
To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/sys/dev/i2c/ihidev.c
Please note that diffs are not
Module Name:src
Committed By: riastradh
Date: Fri Jan 14 22:28:59 UTC 2022
Modified Files:
src/sys/dev/i2c: ihidev.c
Log Message:
ihidev(4): Prohibit closing an unopened ihidev.
To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/sys/dev/i2c/ihidev.c
Module Name:src
Committed By: riastradh
Date: Fri Jan 14 22:28:59 UTC 2022
Modified Files:
src/sys/dev/i2c: ihidev.c
Log Message:
ihidev(4): Prohibit closing an unopened ihidev.
To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/sys/dev/i2c/ihidev.c
Module Name:src
Committed By: riastradh
Date: Fri Jan 14 22:28:50 UTC 2022
Modified Files:
src/sys/dev/i2c: ihidev.c
Log Message:
ihidev(4): Avoid reference count overflow.
To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/sys/dev/i2c/ihidev.c
Please
Module Name:src
Committed By: riastradh
Date: Fri Jan 14 22:28:50 UTC 2022
Modified Files:
src/sys/dev/i2c: ihidev.c
Log Message:
ihidev(4): Avoid reference count overflow.
To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/sys/dev/i2c/ihidev.c
Please
Module Name:src
Committed By: riastradh
Date: Fri Jan 14 22:28:42 UTC 2022
Modified Files:
src/sys/dev/i2c: ims.c
Log Message:
ims(4): Sprinkle KERNEL_LOCKED_P assertions.
Access to the softc and hidms state is currently kernel-locked.
To generate a diff of this
Module Name:src
Committed By: riastradh
Date: Fri Jan 14 22:28:42 UTC 2022
Modified Files:
src/sys/dev/i2c: ims.c
Log Message:
ims(4): Sprinkle KERNEL_LOCKED_P assertions.
Access to the softc and hidms state is currently kernel-locked.
To generate a diff of this
Module Name:src
Committed By: riastradh
Date: Fri Jan 14 22:28:23 UTC 2022
Modified Files:
src/sys/dev/i2c: ihidev.c
Log Message:
ihidev(4): Take the lock for ihidev_open, ihidev_close.
Need this to serialize access to sc_state, sc_refcnt.
XXX Should harmonize this with
Module Name:src
Committed By: riastradh
Date: Fri Jan 14 22:28:23 UTC 2022
Modified Files:
src/sys/dev/i2c: ihidev.c
Log Message:
ihidev(4): Take the lock for ihidev_open, ihidev_close.
Need this to serialize access to sc_state, sc_refcnt.
XXX Should harmonize this with
Module Name:src
Committed By: riastradh
Date: Fri Jan 14 22:26:45 UTC 2022
Modified Files:
src/sys/dev/i2c: ihidev.c
Log Message:
ihidev(4): Check kmem_alloc(..., KM_NOSLEEP) for failure.
To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23
Module Name:src
Committed By: riastradh
Date: Fri Jan 14 22:26:45 UTC 2022
Modified Files:
src/sys/dev/i2c: ihidev.c
Log Message:
ihidev(4): Check kmem_alloc(..., KM_NOSLEEP) for failure.
To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23
Module Name:src
Committed By: riastradh
Date: Fri Jan 14 22:26:35 UTC 2022
Modified Files:
src/sys/dev/i2c: ihidev.c
Log Message:
ihidev(4): Allocate report buffer with KM_SLEEP.
Limited to 64k and only happens on attach anyway. Let's not leave a
rake to trip on here.
Module Name:src
Committed By: riastradh
Date: Fri Jan 14 22:26:35 UTC 2022
Modified Files:
src/sys/dev/i2c: ihidev.c
Log Message:
ihidev(4): Allocate report buffer with KM_SLEEP.
Limited to 64k and only happens on attach anyway. Let's not leave a
rake to trip on here.
Module Name:src
Committed By: riastradh
Date: Fri Jan 14 22:25:49 UTC 2022
Modified Files:
src/sys/dev/i2c: ihidev.c ihidev.h
Log Message:
ihidev(4): Fix locking and interrupt handler.
- Can't run iic_exec in softint because it does cv_wait, at least on
some i2c
Module Name:src
Committed By: riastradh
Date: Fri Jan 14 22:25:49 UTC 2022
Modified Files:
src/sys/dev/i2c: ihidev.c ihidev.h
Log Message:
ihidev(4): Fix locking and interrupt handler.
- Can't run iic_exec in softint because it does cv_wait, at least on
some i2c
Module Name:src
Committed By: riastradh
Date: Fri Jan 14 21:32:27 UTC 2022
Modified Files:
src/sys/dev/i2c: ihidev.h
Log Message:
ihidev(4): Add missing includes and header guard.
Mark the sections that are conventionally separate files for hardware
interface (*reg.h)
Module Name:src
Committed By: riastradh
Date: Fri Jan 14 21:32:27 UTC 2022
Modified Files:
src/sys/dev/i2c: ihidev.h
Log Message:
ihidev(4): Add missing includes and header guard.
Mark the sections that are conventionally separate files for hardware
interface (*reg.h)
Module Name:src
Committed By: riastradh
Date: Sun Dec 19 12:44:35 UTC 2021
Modified Files:
src/sys/dev/i2c: tda19988.c
Log Message:
drm: Fix tda19988 drm build.
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/dev/i2c/tda19988.c
Please note that
Module Name:src
Committed By: riastradh
Date: Sun Dec 19 12:44:35 UTC 2021
Modified Files:
src/sys/dev/i2c: tda19988.c
Log Message:
drm: Fix tda19988 drm build.
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/dev/i2c/tda19988.c
Please note that
Module Name:src
Committed By: msaitoh
Date: Mon Dec 6 16:24:57 UTC 2021
Modified Files:
src/sys/dev/i2c: spdmem_i2c.c
Log Message:
Check the return value correctly. Pointed out by pgoyette@.
To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25
Module Name:src
Committed By: msaitoh
Date: Mon Dec 6 16:24:57 UTC 2021
Modified Files:
src/sys/dev/i2c: spdmem_i2c.c
Log Message:
Check the return value correctly. Pointed out by pgoyette@.
To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25
Module Name:src
Committed By: msaitoh
Date: Mon Dec 6 04:25:36 UTC 2021
Modified Files:
src/sys/dev/i2c: spdmem_i2c.c
Log Message:
Carefully access to the I2C bus in the match function.
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24
Module Name:src
Committed By: msaitoh
Date: Mon Dec 6 04:25:36 UTC 2021
Modified Files:
src/sys/dev/i2c: spdmem_i2c.c
Log Message:
Carefully access to the I2C bus in the match function.
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24
Module Name:src
Committed By: msaitoh
Date: Wed Dec 1 21:33:19 UTC 2021
Modified Files:
src/sys/dev/i2c: sdtemp.c
Log Message:
Use aprint_debug instead of aprint_error for expected failure.
To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41
Module Name:src
Committed By: msaitoh
Date: Wed Dec 1 21:33:19 UTC 2021
Modified Files:
src/sys/dev/i2c: sdtemp.c
Log Message:
Use aprint_debug instead of aprint_error for expected failure.
To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41
Module Name:src
Committed By: msaitoh
Date: Tue Nov 30 05:02:29 UTC 2021
Modified Files:
src/sys/dev/i2c: spdmem_i2c.c
Log Message:
Access byte2...
To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/dev/i2c/spdmem_i2c.c
Please note that diffs are not
Module Name:src
Committed By: msaitoh
Date: Tue Nov 30 05:02:29 UTC 2021
Modified Files:
src/sys/dev/i2c: spdmem_i2c.c
Log Message:
Access byte2...
To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/dev/i2c/spdmem_i2c.c
Please note that diffs are not
Module Name:src
Committed By: brad
Date: Sun Nov 14 18:36:13 UTC 2021
Modified Files:
src/sys/dev/i2c: sht3x.c
Log Message:
Fix some regressions that were introduced.
One must make sure that you release the i2c bus if you acquire.
One must not try to release the i2c bus
Module Name:src
Committed By: brad
Date: Sun Nov 14 18:36:13 UTC 2021
Modified Files:
src/sys/dev/i2c: sht3x.c
Log Message:
Fix some regressions that were introduced.
One must make sure that you release the i2c bus if you acquire.
One must not try to release the i2c bus
Module Name:src
Committed By: christos
Date: Sat Nov 13 13:36:43 UTC 2021
Modified Files:
src/sys/dev/i2c: sht3x.c
Log Message:
Brad wants the __did_not_work code back :-)
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/i2c/sht3x.c
Please note
Module Name:src
Committed By: christos
Date: Sat Nov 13 13:36:43 UTC 2021
Modified Files:
src/sys/dev/i2c: sht3x.c
Log Message:
Brad wants the __did_not_work code back :-)
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/i2c/sht3x.c
Please note
Module Name:src
Committed By: christos
Date: Fri Nov 12 22:16:28 UTC 2021
Modified Files:
src/sys/dev/i2c: sht3x.c
Log Message:
simplify the code and remove unused (it is in CVS anyway). Try to merge
duplicate code. Follow KNF. Brad, please test!
To generate a diff of
Module Name:src
Committed By: christos
Date: Fri Nov 12 22:16:28 UTC 2021
Modified Files:
src/sys/dev/i2c: sht3x.c
Log Message:
simplify the code and remove unused (it is in CVS anyway). Try to merge
duplicate code. Follow KNF. Brad, please test!
To generate a diff of
Module Name:src
Committed By: jmcneill
Date: Sun Nov 7 17:14:38 UTC 2021
Modified Files:
src/sys/dev/i2c: cwfg.c
Log Message:
cwfg: update for dts-5.15 binding changes
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/i2c/cwfg.c
Please note that
Module Name:src
Committed By: jmcneill
Date: Sun Nov 7 17:14:38 UTC 2021
Modified Files:
src/sys/dev/i2c: cwfg.c
Log Message:
cwfg: update for dts-5.15 binding changes
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/i2c/cwfg.c
Please note that
Module Name:src
Committed By: brad
Date: Fri Oct 29 23:23:33 UTC 2021
Modified Files:
src/sys/dev/i2c: sht4x.c
Log Message:
Correct an off by one degree error in the temperature conversion.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2
Module Name:src
Committed By: brad
Date: Fri Oct 29 23:23:33 UTC 2021
Modified Files:
src/sys/dev/i2c: sht4x.c
Log Message:
Correct an off by one degree error in the temperature conversion.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2
Module Name:src
Committed By: christos
Date: Wed Oct 20 17:52:44 UTC 2021
Modified Files:
src/sys/dev/i2c: sgp40.c
Log Message:
- fix clang compilation: add "%s" to format string
- comma is followed by space
- KNF multi-line comments
- fold long lines
- early returns,
Module Name:src
Committed By: christos
Date: Wed Oct 20 17:52:44 UTC 2021
Modified Files:
src/sys/dev/i2c: sgp40.c
Log Message:
- fix clang compilation: add "%s" to format string
- comma is followed by space
- KNF multi-line comments
- fold long lines
- early returns,
Module Name:src
Committed By: christos
Date: Mon Oct 18 14:14:07 UTC 2021
Modified Files:
src/sys/dev/i2c: sensirion_voc_algorithm.c
Log Message:
Fix llvm build: error: equality comparison with extraneous parentheses
[-Werror,-Wparentheses-equality]
To generate a diff
Module Name:src
Committed By: christos
Date: Mon Oct 18 14:14:07 UTC 2021
Modified Files:
src/sys/dev/i2c: sensirion_voc_algorithm.c
Log Message:
Fix llvm build: error: equality comparison with extraneous parentheses
[-Werror,-Wparentheses-equality]
To generate a diff
Hi Michael,
Perhaps your commit missed some changes? The code no longer compiles.
Cheers,
+ Kimmo
/p/netbsd/cvs/src/sys/dev/i2c/dbcool.c: In function 'dbcool_attach':
/p/netbsd/cvs/src/sys/dev/i2c/dbcool.c:778:4: error: 'struct dbcool_softc' has
no member named 'sc_prop'
sc->sc_prop =
Hi,
"Jason R Thorpe" writes:
> Module Name: src
> Committed By: thorpej
> Date: Sun Dec 22 16:44:35 UTC 2019
>
> Modified Files:
> src/sys/dev/i2c: ihidev.c ihidev.h
>
> Log Message:
> The hid-over-i2c spec specifies that compliant devices use level-sensitive
> interrupts.
Module Name:src
Committed By: hkenken
Date: Fri Nov 29 12:42:54 UTC 2019
Modified Files:
src/sys/dev/i2c: motoi2c.c
Log Message:
Add wait for stop condition.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/dev/i2c/motoi2c.c
Please note that diffs
Module Name:src
Committed By: hkenken
Date: Fri Nov 29 12:42:54 UTC 2019
Modified Files:
src/sys/dev/i2c: motoi2c.c
Log Message:
Add wait for stop condition.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/dev/i2c/motoi2c.c
Please note that diffs
Module Name:src
Committed By: hkenken
Date: Fri Nov 29 04:59:15 UTC 2019
Modified Files:
src/sys/dev/i2c: at24cxx.c
Log Message:
Support more than 128Kbit model.
To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/sys/dev/i2c/at24cxx.c
Please note that
Module Name:src
Committed By: hkenken
Date: Fri Nov 29 04:59:15 UTC 2019
Modified Files:
src/sys/dev/i2c: at24cxx.c
Log Message:
Support more than 128Kbit model.
To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/sys/dev/i2c/at24cxx.c
Please note that
Module Name:src
Committed By: mrg
Date: Tue Nov 12 07:40:04 UTC 2019
Modified Files:
src/sys/dev/i2c: fan53555.c
Log Message:
match DIE_ID of 9 (SILERGY_DIE_ID_SYR83X), seen on some rockpro64s.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4
Module Name:src
Committed By: mrg
Date: Tue Nov 12 07:40:04 UTC 2019
Modified Files:
src/sys/dev/i2c: fan53555.c
Log Message:
match DIE_ID of 9 (SILERGY_DIE_ID_SYR83X), seen on some rockpro64s.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4
Module Name:src
Committed By: tnn
Date: Tue Nov 5 19:59:35 UTC 2019
Modified Files:
src/sys/dev/i2c: ssdfb_i2c.c
Log Message:
ssdfb: fix i2c transfer error with some controllers
If the controller doesn't support the full 128 byte transfer size we need,
then split the
Module Name:src
Committed By: tnn
Date: Tue Nov 5 19:59:35 UTC 2019
Modified Files:
src/sys/dev/i2c: ssdfb_i2c.c
Log Message:
ssdfb: fix i2c transfer error with some controllers
If the controller doesn't support the full 128 byte transfer size we need,
then split the
Module Name:src
Committed By: jmcneill
Date: Mon Nov 4 10:02:39 UTC 2019
Modified Files:
src/sys/dev/i2c: tda19988.c
Log Message:
Speed up mode setting a bit and turn off the display while changing modes
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3
Module Name:src
Committed By: jmcneill
Date: Mon Nov 4 10:02:39 UTC 2019
Modified Files:
src/sys/dev/i2c: tda19988.c
Log Message:
Speed up mode setting a bit and turn off the display while changing modes
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3
Module Name:src
Committed By: jmcneill
Date: Sun Nov 3 23:28:59 UTC 2019
Modified Files:
src/sys/dev/i2c: tda19988.c
Log Message:
Test DRM_MODE_* flags, not VID_*
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/i2c/tda19988.c
Please note that
Module Name:src
Committed By: jmcneill
Date: Sun Nov 3 23:28:59 UTC 2019
Modified Files:
src/sys/dev/i2c: tda19988.c
Log Message:
Test DRM_MODE_* flags, not VID_*
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/i2c/tda19988.c
Please note that
Module Name:src
Committed By: jmcneill
Date: Sun Nov 3 22:57:52 UTC 2019
Modified Files:
src/sys/dev/i2c: files.i2c
Added Files:
src/sys/dev/i2c: tda19988.c
Log Message:
Add driver for NXP TDA19988 HDMI encoder
To generate a diff of this commit:
cvs rdiff -u
Module Name:src
Committed By: jmcneill
Date: Sun Nov 3 22:57:52 UTC 2019
Modified Files:
src/sys/dev/i2c: files.i2c
Added Files:
src/sys/dev/i2c: tda19988.c
Log Message:
Add driver for NXP TDA19988 HDMI encoder
To generate a diff of this commit:
cvs rdiff -u
Module Name:src
Committed By: jmcneill
Date: Sun Nov 3 22:55:34 UTC 2019
Modified Files:
src/sys/dev/i2c: tps65217pmic.c
Log Message:
Defer power monitor polling to the sysmon taskq thread to avoid i2c
transactions in intr context
To generate a diff of this commit:
Module Name:src
Committed By: jmcneill
Date: Sun Nov 3 22:55:34 UTC 2019
Modified Files:
src/sys/dev/i2c: tps65217pmic.c
Log Message:
Defer power monitor polling to the sysmon taskq thread to avoid i2c
transactions in intr context
To generate a diff of this commit:
Module Name:src
Committed By: jmcneill
Date: Sun Nov 3 09:34:09 UTC 2019
Modified Files:
src/sys/dev/i2c: twl4030.c
Log Message:
Fix non-FDT build
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/i2c/twl4030.c
Please note that diffs are not
Module Name:src
Committed By: jmcneill
Date: Sun Nov 3 09:34:09 UTC 2019
Modified Files:
src/sys/dev/i2c: twl4030.c
Log Message:
Fix non-FDT build
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/i2c/twl4030.c
Please note that diffs are not
1 - 100 of 186 matches
Mail list logo