diff options
author | Sandor Yu <R01008@freescale.com> | 2013-07-01 15:59:56 +0800 |
---|---|---|
committer | Sandor Yu <R01008@freescale.com> | 2013-07-01 16:55:38 +0800 |
commit | 57ad52cbb0d5b1d82faac8b8cfbe5b3587279799 (patch) | |
tree | 8a253e9439eb30a02ef9dca0cd35775af3f2ddd7 /drivers | |
parent | 8033dc0036e19c82f2f8e8369208b391bcea0a0a (diff) |
ENGR00261285-01 Remove unsupported function from sii902x drvier
Remove suspend/resume function in i2c driver struct.
Sii902x power management function have implemented by fb interface.
Signed-off-by: Sandor Yu <R01008@freescale.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/mxc/mxcfb_sii902x_elcdif.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/drivers/video/mxc/mxcfb_sii902x_elcdif.c b/drivers/video/mxc/mxcfb_sii902x_elcdif.c index ceab3e66e91c..13878e12e57f 100644 --- a/drivers/video/mxc/mxcfb_sii902x_elcdif.c +++ b/drivers/video/mxc/mxcfb_sii902x_elcdif.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010-2012 Freescale Semiconductor, Inc. All Rights Reserved. + * Copyright (C) 2010-2013 Freescale Semiconductor, Inc. All Rights Reserved. */ /* @@ -461,18 +461,6 @@ static int __devexit sii902x_remove(struct i2c_client *client) return 0; } -static int sii902x_suspend(struct i2c_client *client, pm_message_t message) -{ - /*TODO*/ - return 0; -} - -static int sii902x_resume(struct i2c_client *client) -{ - /*TODO*/ - return 0; -} - static void sii902x_poweron(void) { struct fsl_mxc_lcd_platform_data *plat = sii902x.client->dev.platform_data; @@ -522,8 +510,6 @@ static struct i2c_driver sii902x_i2c_driver = { }, .probe = sii902x_probe, .remove = sii902x_remove, - .suspend = sii902x_suspend, - .resume = sii902x_resume, .id_table = sii902x_id, }; |