* [PATCH 6/6] staging:rar_register: add suspend and resume functions
@ 2010-02-05 18:53 Mark Allyn
0 siblings, 0 replies; only message in thread
From: Mark Allyn @ 2010-02-05 18:53 UTC (permalink / raw)
To: linux-kernel, alan, charles.f.johnson, greg; +Cc: Mark Allyn
Add suspend and resume functions (which are currently stubs
returning -ENOSYS)
Signed-off-by: Mark Allyn <mark.a.allyn@intel.com>
---
drivers/staging/rar_register/rar_register.c | 15 ++++++++++++++-
1 files changed, 14 insertions(+), 1 deletions(-)
diff --git a/drivers/staging/rar_register/rar_register.c b/drivers/staging/rar_register/rar_register.c
index c9dcc99..bfc0e31 100644
--- a/drivers/staging/rar_register/rar_register.c
+++ b/drivers/staging/rar_register/rar_register.c
@@ -506,6 +506,17 @@ int register_rar(int (*callback)(void *yourparameter), void *yourparameter)
}
EXPORT_SYMBOL(register_rar);
+/* Suspend - returns -ENOSYS */
+static int rar_suspend(struct pci_dev *dev, pm_message_t state)
+{
+ return -ENOSYS;
+}
+
+static int rar_resume(struct pci_dev *dev)
+{
+ return -ENOSYS;
+}
+
/*
* This function registers the driver with the device subsystem (
* either PCI, USB, etc).
@@ -582,7 +593,9 @@ const struct pci_device_id *my_id_table = rar_pci_id_tbl;
static struct pci_driver rar_pci_driver = {
.name = "rar_register_driver",
.id_table = rar_pci_id_tbl,
- .probe = rar_probe
+ .probe = rar_probe,
+ .suspend = rar_suspend,
+ .resume = rar_resume
};
static int __init rar_init_handler(void)
--
1.6.0.6
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2010-02-05 18:49 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-02-05 18:53 [PATCH 6/6] staging:rar_register: add suspend and resume functions Mark Allyn
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome