diff options
author | Felipe Balbi <felipe.balbi@nokia.com> | 2010-07-05 12:12:01 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-08-02 10:30:04 -0700 |
commit | 96bb386dcf263e281fca2f3d90ef5146dce89839 (patch) | |
tree | d3de91f6e212d377b7978eb5bc1fc4db3f52c264 /drivers | |
parent | a5f91f111fa8827b36399ef5300ae9f664451102 (diff) | |
download | lwn-96bb386dcf263e281fca2f3d90ef5146dce89839.tar.gz lwn-96bb386dcf263e281fca2f3d90ef5146dce89839.zip |
USB: musb: tusb6010: fix compile error with n8x0_defconfig
commit 2b795ea00c2bbb077a1199a4d729c8ac03a6bded upstream.
Drop the unnecessary empty stubs in tusb6010.c and avoid
a compile error when building kernel for n8x0.
Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/musb/tusb6010.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/drivers/usb/musb/tusb6010.c b/drivers/usb/musb/tusb6010.c index 60d3938cafcf..ab776a8d98ca 100644 --- a/drivers/usb/musb/tusb6010.c +++ b/drivers/usb/musb/tusb6010.c @@ -29,19 +29,6 @@ static void tusb_source_power(struct musb *musb, int is_on); #define TUSB_REV_MAJOR(reg_val) ((reg_val >> 4) & 0xf) #define TUSB_REV_MINOR(reg_val) (reg_val & 0xf) -#ifdef CONFIG_PM -/* REVISIT: These should be only needed if somebody implements off idle */ -void musb_platform_save_context(struct musb *musb, - struct musb_context_registers *musb_context) -{ -} - -void musb_platform_restore_context(struct musb *musb, - struct musb_context_registers *musb_context) -{ -} -#endif - /* * Checks the revision. We need to use the DMA register as 3.0 does not * have correct versions for TUSB_PRCM_REV or TUSB_INT_CTRL_REV. |