Hi Philip, > So only the drives I wrote use the ID in a meaningful way? True, providing we limit our consideration to the hardware monitoring drivers. Even in your drivers, the meaningfulness is discussable. The lm85 driver simply displays the assigned id once (at the time it assigns it). Since the id is then never used, I would consider the lm85 driver similar to the other hardware monitoring drivers. The adm1026 driver, OTOH, does use the id value in all debug messages, and it also only reconfigures the GPIO pins for the first client only (id == 0). Although this is a real use of the id, it only matters if you use the module parameters for GPIO pins reconfiguration and actually have more than one ADM1026 chip (a quite rare chip if you remember). You don't necessarily know which ADM1026 will get id 0 anyway (if the chips are on different busses it depends on the order the bus drivers were loaded in), and I am not sure why one would want to reprogram only the first chip. Unless someone comes with such a specific hardware setup so that we can examine what is really needed, I think we can get rid of the "id == 0" test and reconfigure "all" ADM1026 chips (which really is only one for the two known boards using an ADM1026). BTW, does anyone really use the GPIO pins reconfiguration parameters? > What do you propose to replace the ID value in the debug messages > with? > Ideally it would be the things you mention that uniquely identify > the chip in question (bus number and address) > How hard are those values to get at? Do we have to chase possibly > NULL pointers? Everything is already done. The adm1026 driver (like all other drivers of the directory) uses dev_dbg to print its debug messages, and dev_dbg prepends the bus number and chip address to any line it prints. This means that the "client id" is redundant and can be removed losslessly. Thanks, -- Jean Delvare http://khali.linux-fr.org/