Age | Commit message (Collapse) | Author |
|
1. Locate the pwm setting
> find /sys/|grep "pwm"
/sys/devices/platform/i2c-0/0-0061/pwm
2. Set your desired value
echo "0x5c" > /sys/devices/platform/i2c-0/0-0061/pwm
3. Read the current value
more /sys/devices/platform/i2c-0/0-0061/pwm
|
|
- whitespace and coding style cleanup
- temporarily removed the possibility to set the initial pwm value via module parameters
|
|
|
|
- sparse annotiations (viro)
- NULL noise removal (viro)
- #if where #ifdef should've been (saa7146) (viro)
- convert private ABS() to kernel's abs() (rddunlap)
- dvb_register_i2c_device() locking fix for -ENOMEM (akpm)
- dvb_register_i2c_bus() locking fix for -ENOMEM (akpm)
|
|
(should fix mt352 detection)
|
|
|
|
In file included from sp887x.c:21:
include/linux/firmware.h:11: warning: `struct device' declared inside parameter list
include/linux/firmware.h:11: warning: its scope is only this definition or declaration, which is probably not what you want
include/linux/firmware.h:15: warning: `struct device' declared inside parameter list
sp887x.c: In function `attach_adapter':
sp887x.c:616: warning: passing arg 3 of `request_firmware' from incompatible pointer type
|
|
In file included from alps_tdlb7.c:36:
include/linux/firmware.h:11: warning: `struct device' declared inside parameter list
include/linux/firmware.h:11: warning: its scope is only this definition or declaration, which is probably not what you want
include/linux/firmware.h:15: warning: `struct device' declared inside parameter list
alps_tdlb7.c: In function `attach_adapter':
alps_tdlb7.c:655: warning: passing arg 3 of `request_firmware' from incompatible pointer type
|
|
- MODULE_PARM* -> module_param*
- Common name for I2C device and prefix for debug messages.
NOTE: This needs testing by someone who has one of these frontends.
|
|
- MODULE_PARM* -> module_param*
- Common name for I2C device and prefix for debug messages.
NOTE: This needs testing by someone who has one of these frontends.
|
|
- MODULE_PARM* -> module_param*
- Common name for I2C and debug messages.
NOTE: This needs testing by someone who has this frontend.
|
|
- dvb_dummy_fe conversion to Kernel I2C
- Conversion from deprecated MODULE_PARM* to module_param*
- Adding/renaming existing *debug* parameter to debug.
- Common naming scheme for debug/I2C: dvbfe_*
|
|
|
|
|
|
|
|
|
|
- Remove module ref count changes to av7110 and budget-core,
as they did not do the right thing.
|
|
and Amauri Celani <acelani@essegi.net> to add support for the
Technisat AirStar2 with Samsung TDTC9251DH01C(M) tuner
|
|
by Christopher Pascoe
|
|
drivers after the kernel-i2c changes
|
|
|
|
- firmware upload works, but access to the sp5659 tuner module fails (so no tuning)
(maybe my card is broken... 8-(
|
|
|
|
|
|
|
|
|
|
Note: this will probably break some of the drivers out there, which don't
register properly to the kernel i2c subsystem yet.
|
|
|
|
|
|
|
|
|
|
|
|
here ;)
|
|
- especially sort the frontend modules by type and use a consistent naming scheme
(although the distinction between demodulator, tuner and frontend gets fuzzier)
|
|
better name
- change the error message
|
|
running...
|
|
|
|
- code cleanup
- whitespace and comment cleanup
|
|
|
|
|
|
hand:
TT Budget-CI with tda10045h:
mount -t sysfs none /sys/
echo "255" > /sys/class/firmware/timeout
depmod -ae;modprobe budget-ci;modprobe tda1004x
<change to another console>
cd /sys/class/firmware/0-0008/
echo "1" > loading ; cat /tmp/tda1004x.bin > data ;echo "0" > loading
|
|
- convert tda1004x driver to kernel i2c, implement untested firmware loading
|
|
(Alex, do you take care of that one?)
|
|
the usage of the syscall interface to load binary firmware used by some
frontend drivers.
- add dvb_register_frontend_new() and dvb_unregister_frontend_new() which
register a frontend driver using the kernel i2c interface instead of the
dvb i2c interface.
- register kernel i2c interface in av7110/budget driver properly
- port stv0299 and ves1x93 to kernel i2c api
Other DVB drivers and frontend drivers still can use the old DVB i2c
interface.
|
|
|
|
|
|
|
|
mentioned in help text, but not enforced). found by Gert Uytterhoeven
|
|
|
|
Implemented FE_GET_FRONTEND.
|