Changeset 15 for lm-sensors/trunk/src/smbus.c
- Timestamp:
- 11/27/98 01:26:51 (15 years ago)
- Files:
-
- 1 modified
-
lm-sensors/trunk/src/smbus.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/src/smbus.c
r13 r15 115 115 int num) 116 116 { 117 printk("smbus _master_xfer called for adapter `%s' "117 printk("smbus.o: smbus_master_xfer called for adapter `%s' " 118 118 "(no i2c level access possible!)\n", 119 119 adap->name); … … 124 124 int smbus_slave_send (struct smbus_adapter *adap, char *data, int len) 125 125 { 126 printk("smbus _slave_send called for adapter `%s' "126 printk("smbus.o: smbus_slave_send called for adapter `%s' " 127 127 "(no i2c level access possible!)\n", 128 128 adap->name); … … 133 133 int smbus_slave_recv (struct smbus_adapter *adap, char *data, int len) 134 134 { 135 printk("smbus _slave_recv called for adapter `%s' "135 printk("smbus.o: smbus_slave_recv called for adapter `%s' " 136 136 "(no i2c level access possible!)\n", 137 137 adap->name); … … 164 164 printk("smbus.o version %s (%s)\n",LM_VERSION,LM_DATE); 165 165 if ((res = smbus_add_algorithm(&smbus_algorithm))) 166 printk(" Module smbus.o not inserted!\n");166 printk("smbus.o: Algorithm registration failed, module not inserted.\n"); 167 167 else 168 168 printk("smbus.o initialized\n"); … … 174 174 int res; 175 175 if ((res = smbus_del_algorithm(&smbus_algorithm))) 176 printk(" Module smbus.o could not be removed cleanly!\n");176 printk("smbus.o: Algorithm deregistration failed, module not removed\n"); 177 177 return res; 178 178 }
