Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1bba688b authored by Axel Lin's avatar Axel Lin Committed by Artem Bityutskiy
Browse files

mtd: r852: make r852_pm_ops static



It is not used outside this driver so no need to make the symbol global.
Also make r852_suspend and r852_resume static.

Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Signed-off-by: default avatarArtem Bityutskiy <artem.bityutskiy@intel.com>
parent ada766e9
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -1027,7 +1027,7 @@ void r852_shutdown(struct pci_dev *pci_dev)
}
}


#ifdef CONFIG_PM
#ifdef CONFIG_PM
int r852_suspend(struct device *device)
static int r852_suspend(struct device *device)
{
{
	struct r852_device *dev = pci_get_drvdata(to_pci_dev(device));
	struct r852_device *dev = pci_get_drvdata(to_pci_dev(device));


@@ -1048,7 +1048,7 @@ int r852_suspend(struct device *device)
	return 0;
	return 0;
}
}


int r852_resume(struct device *device)
static int r852_resume(struct device *device)
{
{
	struct r852_device *dev = pci_get_drvdata(to_pci_dev(device));
	struct r852_device *dev = pci_get_drvdata(to_pci_dev(device));


@@ -1092,7 +1092,7 @@ static const struct pci_device_id r852_pci_id_tbl[] = {


MODULE_DEVICE_TABLE(pci, r852_pci_id_tbl);
MODULE_DEVICE_TABLE(pci, r852_pci_id_tbl);


SIMPLE_DEV_PM_OPS(r852_pm_ops, r852_suspend, r852_resume);
static SIMPLE_DEV_PM_OPS(r852_pm_ops, r852_suspend, r852_resume);


static struct pci_driver r852_pci_driver = {
static struct pci_driver r852_pci_driver = {
	.name		= DRV_NAME,
	.name		= DRV_NAME,