ARM: davinci: da8xx: Fix ohci device name
While the clk lookup table is making reference to "ohci" other subsystems (such as phy) are trying to match "ohci.0" Since there is a single ohci instance, instead of changing the clk name, change the dev id to -1, and add the "-da8xx" postfix to match the driver name that will also be changed in a subsequent patch. Signed-off-by: Axel Haslam <ahaslam@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
此提交包含在:
@@ -109,8 +109,8 @@ static struct resource da8xx_usb11_resources[] = {
|
||||
static u64 da8xx_usb11_dma_mask = DMA_BIT_MASK(32);
|
||||
|
||||
static struct platform_device da8xx_usb11_device = {
|
||||
.name = "ohci",
|
||||
.id = 0,
|
||||
.name = "ohci-da8xx",
|
||||
.id = -1,
|
||||
.dev = {
|
||||
.dma_mask = &da8xx_usb11_dma_mask,
|
||||
.coherent_dma_mask = DMA_BIT_MASK(32),
|
||||
|
新增問題並參考
封鎖使用者