mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-01 08:04:22 +08:00
hwrng: cn10k - delete empty remove function
The remove function is empty, we can delete it. It's ok for a PCI driver to have no remove function. Signed-off-by: Martin Kaiser <martin@kaiser.cx> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
9553ae3497
commit
5a3d66acf0
@ -213,11 +213,6 @@ static int cn10k_rng_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void cn10k_rng_remove(struct pci_dev *pdev)
|
||||
{
|
||||
/* Nothing to do */
|
||||
}
|
||||
|
||||
static const struct pci_device_id cn10k_rng_id_table[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_CAVIUM, 0xA098) }, /* RNG PF */
|
||||
{0,},
|
||||
@ -229,7 +224,6 @@ static struct pci_driver cn10k_rng_driver = {
|
||||
.name = "cn10k_rng",
|
||||
.id_table = cn10k_rng_id_table,
|
||||
.probe = cn10k_rng_probe,
|
||||
.remove = cn10k_rng_remove,
|
||||
};
|
||||
|
||||
module_pci_driver(cn10k_rng_driver);
|
||||
|
Loading…
Reference in New Issue
Block a user