Commit 56040087 authored by Peter Chen's avatar Peter Chen Committed by Greg Kroah-Hartman

usb: chipidea: imx: using common platform flag directly

It is meaningless the glue layer driver has its own platform flag
which is the same meaning with common platform flag.
Signed-off-by: default avatarPeter Chen <peter.chen@freescale.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d5d1e1be
...@@ -23,8 +23,6 @@ ...@@ -23,8 +23,6 @@
#include "ci.h" #include "ci.h"
#include "ci_hdrc_imx.h" #include "ci_hdrc_imx.h"
#define CI_HDRC_IMX_IMX28_WRITE_FIX BIT(0)
struct ci_hdrc_imx_platform_flag { struct ci_hdrc_imx_platform_flag {
unsigned int flags; unsigned int flags;
}; };
...@@ -33,7 +31,7 @@ static const struct ci_hdrc_imx_platform_flag imx27_usb_data = { ...@@ -33,7 +31,7 @@ static const struct ci_hdrc_imx_platform_flag imx27_usb_data = {
}; };
static const struct ci_hdrc_imx_platform_flag imx28_usb_data = { static const struct ci_hdrc_imx_platform_flag imx28_usb_data = {
.flags = CI_HDRC_IMX_IMX28_WRITE_FIX, .flags = CI_HDRC_IMX28_WRITE_FIX,
}; };
static const struct of_device_id ci_hdrc_imx_dt_ids[] = { static const struct of_device_id ci_hdrc_imx_dt_ids[] = {
...@@ -145,9 +143,7 @@ static int ci_hdrc_imx_probe(struct platform_device *pdev) ...@@ -145,9 +143,7 @@ static int ci_hdrc_imx_probe(struct platform_device *pdev)
} }
pdata.usb_phy = data->phy; pdata.usb_phy = data->phy;
pdata.flags |= imx_platform_flag->flags;
if (imx_platform_flag->flags & CI_HDRC_IMX_IMX28_WRITE_FIX)
pdata.flags |= CI_HDRC_IMX28_WRITE_FIX;
ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32)); ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
if (ret) if (ret)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment