mirror of
https://github.com/torvalds/linux.git
synced 2026-06-09 07:03:37 +02:00
dwc_otg: fix compile error
This commit is contained in:
parent
39f8a16842
commit
431b4e2129
|
|
@ -48,6 +48,7 @@
|
|||
* device.
|
||||
*/
|
||||
|
||||
#include <linux/clk.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/moduleparam.h>
|
||||
|
|
@ -1518,7 +1519,7 @@ static __devinit int host20_driver_probe(struct platform_device *pdev)
|
|||
clk = clk_get(NULL, "otgphy1");
|
||||
if (IS_ERR(clk)) {
|
||||
retval = PTR_ERR(clk);
|
||||
DWC_ERROR(&"can't get USB clock of otgphy1\n");
|
||||
DWC_ERROR("can't get USB clock of otgphy1\n");
|
||||
goto fail;
|
||||
}
|
||||
clk_enable(clk);
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
|
||||
#include <linux/clk.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/moduleparam.h>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user