#include <ufs/ufshcd.h>
#include "ufshcd-dwc.h"
#include "tc-dwc-g210.h"
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/pm_runtime.h>
#define TC_G210_20BIT …
#define TC_G210_40BIT …
#define TC_G210_INV …
static int tc_type = …;
module_param(tc_type, int, 0);
MODULE_PARM_DESC(…) …;
static struct ufs_hba_variant_ops tc_dwc_g210_pci_hba_vops = …;
static void tc_dwc_g210_pci_remove(struct pci_dev *pdev)
{ … }
static int
tc_dwc_g210_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
{ … }
static const struct dev_pm_ops tc_dwc_g210_pci_pm_ops = …;
static const struct pci_device_id tc_dwc_g210_pci_tbl[] = …;
MODULE_DEVICE_TABLE(pci, tc_dwc_g210_pci_tbl);
static struct pci_driver tc_dwc_g210_pci_driver = …;
module_pci_driver(…) …;
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;