| 1 | Many, many things. Most notably: |
|---|
| 2 | |
|---|
| 3 | I2C CODE CHANGES |
|---|
| 4 | ================ |
|---|
| 5 | |
|---|
| 6 | * Check what happens if the ISA bus is selected by a force parameter; |
|---|
| 7 | I think the _detect procedures are called?!? |
|---|
| 8 | * Update all documentation |
|---|
| 9 | |
|---|
| 10 | KERNEL MODULES |
|---|
| 11 | ============== |
|---|
| 12 | |
|---|
| 13 | * All clients: We can remove the foo_list of registered clients. They are not |
|---|
| 14 | used anymore. |
|---|
| 15 | * Most clients: Some typecasts to `struct i2c_client' are completely |
|---|
| 16 | unnecessary by now. Remove them. |
|---|
| 17 | * LM78 detection: Tom Webster has proven that the reset bit in the |
|---|
| 18 | id register can be one (strange!) |
|---|
| 19 | * maxilife.c: Introduce new insmod variables |
|---|
| 20 | * maxilife.c: Round REG_TO_VID correctly |
|---|
| 21 | * icspll.c: Rewrite. The current implementation simply can't work at all. |
|---|
| 22 | It needs i2c-level access (too bad for SMBus-only adapters). |
|---|
| 23 | * w83781d: Some features are still unsupported for the W8378[23]. For |
|---|
| 24 | example, the extended beeps (bank 4 register 0x53). |
|---|
| 25 | Also, alarms seem to give strange results |
|---|
| 26 | sometimes, and there are some other minor problems, as indicated by |
|---|
| 27 | Jonathan Bradshaw <jonathan@NrgUp.Com> |
|---|
| 28 | * Support 10-bit addresses. At this moment, they are supported nowhere, except |
|---|
| 29 | in Simon Vogl's i2c modules. |
|---|
| 30 | * Better general locking, or at least a once-over to check no race-conditions |
|---|
| 31 | remain. This is part of the SMP-safeness, and can better be done at once. |
|---|
| 32 | * Test SIS5595(/91/98) sensor support. Write generic i2c support. |
|---|
| 33 | Thomas Dickel <Thomas.Dickel@mni.fh-giessen.de> owns one SIS5595. |
|---|
| 34 | * adm9240: check whether the current voltage computations are correct. |
|---|
| 35 | Probably not, as they are different from the datasheet specifications. |
|---|
| 36 | Also check for the supported dallas chip. |
|---|
| 37 | * lm80: Check how OS alarms work. At page 17 of the sheet, it tells |
|---|
| 38 | something completely different from the description at page 25. |
|---|
| 39 | * gl518sm: Assume that new values are close to old values, so start with |
|---|
| 40 | trying to use a small range near the old values (already partially done) |
|---|
| 41 | |
|---|
| 42 | |
|---|
| 43 | LIBRARY |
|---|
| 44 | ======= |
|---|
| 45 | |
|---|
| 46 | * reload does not work (Bison/Flex problem?). |
|---|
| 47 | * Some library routines are pretty inefficient right now. |
|---|
| 48 | * Library should be split in more separate files, for better linking |
|---|
| 49 | behaviour. |
|---|
| 50 | |
|---|
| 51 | PROGRAMS |
|---|
| 52 | ======== |
|---|
| 53 | |
|---|
| 54 | * Sensors program needs to print a + before lm75 temperatures |
|---|
| 55 | * Sensors program needs to be extended for many new chips |
|---|
| 56 | |
|---|
| 57 | OTHERS |
|---|
| 58 | ====== |
|---|
| 59 | |
|---|
| 60 | * Examine watchdog-4.3 or later of meskes@debian.org (Michael Meskes) |
|---|
| 61 | tsx-11.mit.edu /pub/linux/sources/sbin or |
|---|
| 62 | sunsite.unc.edu /pub/linux/system/daemons/watchdog |
|---|
| 63 | * Add experimental drivers |
|---|
| 64 | |
|---|