drivers/i2c/omap24xx_i2c.c: replace printf with one argument by puts
Signed-off-by: Andreas Müller <schnitzeltony@gmx.de> Acked-by: Heiko Schocher <hs@denx.de>
This commit is contained in:
		
							parent
							
								
									8a8f084e4f
								
							
						
					
					
						commit
						49e9b4bd9b
					
				|  | @ -73,7 +73,7 @@ void i2c_init(int speed, int slaveadd) | |||
| 		fssclh -= I2C_HIGHSPEED_PHASE_ONE_SCLH_TRIM; | ||||
| 		if (((fsscll < 0) || (fssclh < 0)) || | ||||
| 		    ((fsscll > 255) || (fssclh > 255))) { | ||||
| 			printf("Error : I2C initializing first phase clock\n"); | ||||
| 			puts("Error : I2C initializing first phase clock\n"); | ||||
| 			return; | ||||
| 		} | ||||
| 
 | ||||
|  | @ -84,7 +84,7 @@ void i2c_init(int speed, int slaveadd) | |||
| 		hssclh -= I2C_HIGHSPEED_PHASE_TWO_SCLH_TRIM; | ||||
| 		if (((fsscll < 0) || (fssclh < 0)) || | ||||
| 		    ((fsscll > 255) || (fssclh > 255))) { | ||||
| 			printf("Error : I2C initializing second phase clock\n"); | ||||
| 			puts("Error : I2C initializing second phase clock\n"); | ||||
| 			return; | ||||
| 		} | ||||
| 
 | ||||
|  | @ -99,7 +99,7 @@ void i2c_init(int speed, int slaveadd) | |||
| 		fssclh -= I2C_FASTSPEED_SCLH_TRIM; | ||||
| 		if (((fsscll < 0) || (fssclh < 0)) || | ||||
| 		    ((fsscll > 255) || (fssclh > 255))) { | ||||
| 			printf("Error : I2C initializing clock\n"); | ||||
| 			puts("Error : I2C initializing clock\n"); | ||||
| 			return; | ||||
| 		} | ||||
| 
 | ||||
|  | @ -118,7 +118,7 @@ void i2c_init(int speed, int slaveadd) | |||
| 	writew(I2C_CON_EN, &i2c_base->con); | ||||
| 	while (!(readw(&i2c_base->syss) & I2C_SYSS_RDONE) && timeout--) { | ||||
| 		if (timeout <= 0) { | ||||
| 			printf("ERROR: Timeout in soft-reset\n"); | ||||
| 			puts("ERROR: Timeout in soft-reset\n"); | ||||
| 			return; | ||||
| 		} | ||||
| 		udelay(1000); | ||||
|  | @ -284,13 +284,13 @@ int i2c_read(uchar chip, uint addr, int alen, uchar *buffer, int len) | |||
| 	} | ||||
| 
 | ||||
| 	if (addr + len > 256) { | ||||
| 		printf("I2C read: address out of range\n"); | ||||
| 		puts("I2C read: address out of range\n"); | ||||
| 		return 1; | ||||
| 	} | ||||
| 
 | ||||
| 	for (i = 0; i < len; i++) { | ||||
| 		if (i2c_read_byte(chip, addr + i, &buffer[i])) { | ||||
| 			printf("I2C read: I/O error\n"); | ||||
| 			puts("I2C read: I/O error\n"); | ||||
| 			i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); | ||||
| 			return 1; | ||||
| 		} | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue