mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 02:26:41 +07:00
51b751f112
Now that the SPDX tag is in all USB files, that identifies the license in a specific and legally-defined manner. So the extra GPL text wording can be removed as it is no longer needed at all. This is done on a quest to remove the 700+ different ways that files in the kernel describe the GPL license text. And there's unneeded stuff like the address (sometimes incorrect) for the FSF which is never needed. No copyright headers or other non-license-description text was removed. Cc: Thierry Reding <thierry.reding@gmail.com> Cc: Jonathan Hunter <jonathanh@nvidia.com> Acked-by: Peter Chen <peter.chen@nxp.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
68 lines
1.5 KiB
C
68 lines
1.5 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2013 Daniel Tang <tangrs@tangrs.id.au>
|
|
*
|
|
* Based off drivers/usb/chipidea/ci_hdrc_msm.c
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/usb/gadget.h>
|
|
#include <linux/usb/chipidea.h>
|
|
|
|
#include "ci.h"
|
|
|
|
static struct ci_hdrc_platform_data ci_hdrc_zevio_platdata = {
|
|
.name = "ci_hdrc_zevio",
|
|
.flags = CI_HDRC_REGS_SHARED | CI_HDRC_FORCE_FULLSPEED,
|
|
.capoffset = DEF_CAPOFFSET,
|
|
};
|
|
|
|
static int ci_hdrc_zevio_probe(struct platform_device *pdev)
|
|
{
|
|
struct platform_device *ci_pdev;
|
|
|
|
dev_dbg(&pdev->dev, "ci_hdrc_zevio_probe\n");
|
|
|
|
ci_pdev = ci_hdrc_add_device(&pdev->dev,
|
|
pdev->resource, pdev->num_resources,
|
|
&ci_hdrc_zevio_platdata);
|
|
|
|
if (IS_ERR(ci_pdev)) {
|
|
dev_err(&pdev->dev, "ci_hdrc_add_device failed!\n");
|
|
return PTR_ERR(ci_pdev);
|
|
}
|
|
|
|
platform_set_drvdata(pdev, ci_pdev);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int ci_hdrc_zevio_remove(struct platform_device *pdev)
|
|
{
|
|
struct platform_device *ci_pdev = platform_get_drvdata(pdev);
|
|
|
|
ci_hdrc_remove_device(ci_pdev);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct of_device_id ci_hdrc_zevio_dt_ids[] = {
|
|
{ .compatible = "lsi,zevio-usb", },
|
|
{ /* sentinel */ }
|
|
};
|
|
|
|
static struct platform_driver ci_hdrc_zevio_driver = {
|
|
.probe = ci_hdrc_zevio_probe,
|
|
.remove = ci_hdrc_zevio_remove,
|
|
.driver = {
|
|
.name = "zevio_usb",
|
|
.of_match_table = ci_hdrc_zevio_dt_ids,
|
|
},
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, ci_hdrc_zevio_dt_ids);
|
|
module_platform_driver(ci_hdrc_zevio_driver);
|
|
|
|
MODULE_LICENSE("GPL v2");
|