Commit 17bc98a4 authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Mauro Carvalho Chehab

V4L/DVB (4499): CONFIG_PM=n slim: drivers/media/video/*

Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 4d98816b
...@@ -4194,6 +4194,7 @@ static void __devexit bttv_remove(struct pci_dev *pci_dev) ...@@ -4194,6 +4194,7 @@ static void __devexit bttv_remove(struct pci_dev *pci_dev)
return; return;
} }
#ifdef CONFIG_PM
static int bttv_suspend(struct pci_dev *pci_dev, pm_message_t state) static int bttv_suspend(struct pci_dev *pci_dev, pm_message_t state)
{ {
struct bttv *btv = pci_get_drvdata(pci_dev); struct bttv *btv = pci_get_drvdata(pci_dev);
...@@ -4274,6 +4275,7 @@ static int bttv_resume(struct pci_dev *pci_dev) ...@@ -4274,6 +4275,7 @@ static int bttv_resume(struct pci_dev *pci_dev)
spin_unlock_irqrestore(&btv->s_lock,flags); spin_unlock_irqrestore(&btv->s_lock,flags);
return 0; return 0;
} }
#endif
static struct pci_device_id bttv_pci_tbl[] = { static struct pci_device_id bttv_pci_tbl[] = {
{PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT848, {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT848,
...@@ -4294,8 +4296,10 @@ static struct pci_driver bttv_pci_driver = { ...@@ -4294,8 +4296,10 @@ static struct pci_driver bttv_pci_driver = {
.id_table = bttv_pci_tbl, .id_table = bttv_pci_tbl,
.probe = bttv_probe, .probe = bttv_probe,
.remove = __devexit_p(bttv_remove), .remove = __devexit_p(bttv_remove),
#ifdef CONFIG_PM
.suspend = bttv_suspend, .suspend = bttv_suspend,
.resume = bttv_resume, .resume = bttv_resume,
#endif
}; };
static int bttv_init_module(void) static int bttv_init_module(void)
......
...@@ -1160,8 +1160,10 @@ static struct pci_driver blackbird_pci_driver = { ...@@ -1160,8 +1160,10 @@ static struct pci_driver blackbird_pci_driver = {
.id_table = cx8802_pci_tbl, .id_table = cx8802_pci_tbl,
.probe = blackbird_probe, .probe = blackbird_probe,
.remove = __devexit_p(blackbird_remove), .remove = __devexit_p(blackbird_remove),
#ifdef CONFIG_PM
.suspend = cx8802_suspend_common, .suspend = cx8802_suspend_common,
.resume = cx8802_resume_common, .resume = cx8802_resume_common,
#endif
}; };
static int blackbird_init(void) static int blackbird_init(void)
......
...@@ -870,8 +870,10 @@ static struct pci_driver dvb_pci_driver = { ...@@ -870,8 +870,10 @@ static struct pci_driver dvb_pci_driver = {
.id_table = cx8802_pci_tbl, .id_table = cx8802_pci_tbl,
.probe = dvb_probe, .probe = dvb_probe,
.remove = __devexit_p(dvb_remove), .remove = __devexit_p(dvb_remove),
#ifdef CONFIG_PM
.suspend = cx8802_suspend_common, .suspend = cx8802_suspend_common,
.resume = cx8802_resume_common, .resume = cx8802_resume_common,
#endif
}; };
static int dvb_init(void) static int dvb_init(void)
......
...@@ -497,6 +497,7 @@ static int start_video_dma(struct cx8800_dev *dev, ...@@ -497,6 +497,7 @@ static int start_video_dma(struct cx8800_dev *dev,
return 0; return 0;
} }
#ifdef CONFIG_PM
static int stop_video_dma(struct cx8800_dev *dev) static int stop_video_dma(struct cx8800_dev *dev)
{ {
struct cx88_core *core = dev->core; struct cx88_core *core = dev->core;
...@@ -512,6 +513,7 @@ static int stop_video_dma(struct cx8800_dev *dev) ...@@ -512,6 +513,7 @@ static int stop_video_dma(struct cx8800_dev *dev)
cx_clear(MO_VID_INTMSK, 0x0f0011); cx_clear(MO_VID_INTMSK, 0x0f0011);
return 0; return 0;
} }
#endif
static int restart_video_queue(struct cx8800_dev *dev, static int restart_video_queue(struct cx8800_dev *dev,
struct cx88_dmaqueue *q) struct cx88_dmaqueue *q)
...@@ -2017,6 +2019,7 @@ static void __devexit cx8800_finidev(struct pci_dev *pci_dev) ...@@ -2017,6 +2019,7 @@ static void __devexit cx8800_finidev(struct pci_dev *pci_dev)
kfree(dev); kfree(dev);
} }
#ifdef CONFIG_PM
static int cx8800_suspend(struct pci_dev *pci_dev, pm_message_t state) static int cx8800_suspend(struct pci_dev *pci_dev, pm_message_t state)
{ {
struct cx8800_dev *dev = pci_get_drvdata(pci_dev); struct cx8800_dev *dev = pci_get_drvdata(pci_dev);
...@@ -2092,6 +2095,7 @@ static int cx8800_resume(struct pci_dev *pci_dev) ...@@ -2092,6 +2095,7 @@ static int cx8800_resume(struct pci_dev *pci_dev)
return 0; return 0;
} }
#endif
/* ----------------------------------------------------------- */ /* ----------------------------------------------------------- */
...@@ -2112,9 +2116,10 @@ static struct pci_driver cx8800_pci_driver = { ...@@ -2112,9 +2116,10 @@ static struct pci_driver cx8800_pci_driver = {
.id_table = cx8800_pci_tbl, .id_table = cx8800_pci_tbl,
.probe = cx8800_initdev, .probe = cx8800_initdev,
.remove = __devexit_p(cx8800_finidev), .remove = __devexit_p(cx8800_finidev),
#ifdef CONFIG_PM
.suspend = cx8800_suspend, .suspend = cx8800_suspend,
.resume = cx8800_resume, .resume = cx8800_resume,
#endif
}; };
static int cx8800_init(void) static int cx8800_init(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment