From: Jaehoon Chung Date: Thu, 28 Sep 2017 11:59:17 +0000 (+0900) Subject: i2c: i2c_hal: remove the unnecessary debug message X-Git-Tag: accepted/tizen/4.0/unified/20171017.210954~2 X-Git-Url: http://review.tizen.org/git/?p=profile%2Fmobile%2Fplatform%2Fkernel%2Fu-boot-tm1.git;a=commitdiff_plain;h=9e73390b3028e2891904a8c7f2b61efe1f72c1f2 i2c: i2c_hal: remove the unnecessary debug message These messages aren't displayed. Remove the unnecessaray debug message for removing warning. Change-Id: I86a4bd6402fea0620940ff5daee6ca8efc2c7652 Signed-off-by: Jaehoon Chung --- diff --git a/drivers/i2c/i2c_hal.c b/drivers/i2c/i2c_hal.c index 2a28ddf..9119ceb 100644 --- a/drivers/i2c/i2c_hal.c +++ b/drivers/i2c/i2c_hal.c @@ -117,7 +117,6 @@ LOCAL uint32 I2C_Bus_CFG (uint32 logic_id) LOCAL uint32 I2C_Bus_Init (uint32 logic_id, uint32 freq, uint32 port_id) { uint32 bus_id = __i2c_phy_cfg[logic_id].phy_id; - IIC_PRINT ("[IIC DRV:]I2C_Bus_Init"); /*config bus property*/ __i2c_bus[bus_id].current_freq = freq; __i2c_bus[bus_id].current_port = port_id; @@ -151,7 +150,6 @@ LOCAL uint32 I2C_Bus_Exit (uint32 bus_id) __i2c_bus[bus_id].mutex = NULL; } */ - IIC_PRINT ("[IIC DRV:]I2C_Bus_Exit: status=%d", status_val); /*release the bus method*/ __i2c_bus[bus_id].phy_fun = NULL; return 0; @@ -219,8 +217,6 @@ PUBLIC int32 I2C_HAL_Open (I2C_DEV *dev) __i2c_bus[bus_id].reference++; - IIC_PRINT ("[IIC DRV:]I2C_HAL_Open: handle=%d, ref=%d", handle, __i2c_bus[bus_id].reference); - return handle; } @@ -265,8 +261,6 @@ PUBLIC int32 I2C_HAL_Close (uint32 handle) __i2c_dev[handle].check_ack = 0; __i2c_dev[handle].no_stop = 0; - IIC_PRINT ("[IIC DRV:]I2C_HAL_Close: handle=%d, ref=%d", handle, __i2c_bus[bus_id].reference); - return 0; }