summaryrefslogtreecommitdiff
path: root/drivers/usb/gadget/fsl_tegra_udc.c
blob: 0cb9e371b750b87aed16cc4ad8591ddd15905586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * Description:
 * Helper functions to support the tegra USB controller
 *
 * This program is free software; you can redistribute  it and/or modify it
 * under  the terms of  the GNU General  Public License as published by the
 * Free Software Foundation;  either version 2 of the  License, or (at your
 * option) any later version.
 */
#include <linux/clk.h>
#include <linux/delay.h>
#include <linux/err.h>
#include <linux/fsl_devices.h>
#include <linux/platform_device.h>

int fsl_udc_clk_init(struct platform_device *pdev)
{

	return 0;

}

void fsl_udc_clk_finalize(struct platform_device *pdev)
{
}

void fsl_udc_clk_release(void)
{
}

void fsl_udc_clk_suspend(void)
{
}

void fsl_udc_clk_resume(void)
{
}