usb: chipidea: tegra: clean up tegra_udc flag code
All Tegra devices handled by tegra-udc use the same flags. Consolidate all the entries under one roof. Signed-off-by: Peter Geis <pgwipeout@gmail.com> Acked-by: Thierry Reding <treding@nvidia.com> Link: https://lore.kernel.org/r/20191002131933.6206-1-pgwipeout@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
29e56c0cf5
commit
9ac0fc3906
|
@ -24,35 +24,23 @@ struct tegra_udc_soc_info {
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct tegra_udc_soc_info tegra20_udc_soc_info = {
|
static const struct tegra_udc_soc_info tegra_udc_soc_info = {
|
||||||
.flags = CI_HDRC_REQUIRES_ALIGNED_DMA,
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct tegra_udc_soc_info tegra30_udc_soc_info = {
|
|
||||||
.flags = CI_HDRC_REQUIRES_ALIGNED_DMA,
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct tegra_udc_soc_info tegra114_udc_soc_info = {
|
|
||||||
.flags = CI_HDRC_REQUIRES_ALIGNED_DMA,
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct tegra_udc_soc_info tegra124_udc_soc_info = {
|
|
||||||
.flags = CI_HDRC_REQUIRES_ALIGNED_DMA,
|
.flags = CI_HDRC_REQUIRES_ALIGNED_DMA,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct of_device_id tegra_udc_of_match[] = {
|
static const struct of_device_id tegra_udc_of_match[] = {
|
||||||
{
|
{
|
||||||
.compatible = "nvidia,tegra20-udc",
|
.compatible = "nvidia,tegra20-udc",
|
||||||
.data = &tegra20_udc_soc_info,
|
.data = &tegra_udc_soc_info,
|
||||||
}, {
|
}, {
|
||||||
.compatible = "nvidia,tegra30-udc",
|
.compatible = "nvidia,tegra30-udc",
|
||||||
.data = &tegra30_udc_soc_info,
|
.data = &tegra_udc_soc_info,
|
||||||
}, {
|
}, {
|
||||||
.compatible = "nvidia,tegra114-udc",
|
.compatible = "nvidia,tegra114-udc",
|
||||||
.data = &tegra114_udc_soc_info,
|
.data = &tegra_udc_soc_info,
|
||||||
}, {
|
}, {
|
||||||
.compatible = "nvidia,tegra124-udc",
|
.compatible = "nvidia,tegra124-udc",
|
||||||
.data = &tegra124_udc_soc_info,
|
.data = &tegra_udc_soc_info,
|
||||||
}, {
|
}, {
|
||||||
/* sentinel */
|
/* sentinel */
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue