diff options
author | Ben Hutchings <ben@decadent.org.uk> | 2019-09-19 19:16:06 +0100 |
---|---|---|
committer | Ben Hutchings <ben@decadent.org.uk> | 2019-09-23 21:12:18 +0100 |
commit | 2be081b4ec9c3630a678b7abf8216e78dbba459d (patch) | |
tree | c76e2846a3dea351a1dd7e671e7253d56d4bb642 | |
parent | 0bd118896b6a82a42845a6148d2f0f4a3694d178 (diff) |
media: poseidon: Depend on PM_RUNTIME
This is a stable-only patch as the driver has been removed upstream.
Commit c2b71462d294 "USB: core: Fix bug caused by duplicate interface
PM usage counter" switched USB to using only the standard runtime PM
mechanism. In my backport I changed poseidon to read the runtime PM
counter, but that means it now needs to depend on PM_RUNTIME.
Reported-by: Thomas Bork <tom@eisfair.net>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
-rw-r--r-- | drivers/media/usb/tlg2300/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/usb/tlg2300/Kconfig b/drivers/media/usb/tlg2300/Kconfig index 645d915267e6..2b41ef01848d 100644 --- a/drivers/media/usb/tlg2300/Kconfig +++ b/drivers/media/usb/tlg2300/Kconfig @@ -7,6 +7,7 @@ config VIDEO_TLG2300 select VIDEOBUF_VMALLOC select SND_PCM select VIDEOBUF_DVB + depends on PM_RUNTIME ---help--- This is a video4linux driver for Telegent tlg2300 based TV cards. |