diff options
author | Douglas Schilling Landgraf <dougsland@redhat.com> | 2008-12-27 22:31:49 -0200 |
---|---|---|
committer | Douglas Schilling Landgraf <dougsland@redhat.com> | 2008-12-27 22:31:49 -0200 |
commit | c99b0d4ab60926ec7ee706857729a13d2c7fc866 (patch) | |
tree | 71c1698c510ae4a22de061ec18bba7ff22e175dc /linux/drivers/media/radio/radio-mr800.c | |
parent | 1467b595408ac678d4b03fbc57f42cce86e1f346 (diff) | |
download | mediapointer-dvb-s2-c99b0d4ab60926ec7ee706857729a13d2c7fc866.tar.gz mediapointer-dvb-s2-c99b0d4ab60926ec7ee706857729a13d2c7fc866.tar.bz2 |
radio-mr800: disable autosuspend support
From: Alexey Klimov <klimov.linux@gmail.com>
Because this device doesn't provide any powermanagment capabilities(may
be they exist but unknown to me yet, so they are not implemented), we
should turn them off. Patch sets support_autosuspend equal to 0.
Priority: normal
Signed-off-by: Alexey Klimov <klimov.linux@gmail.com>
Signed-off-by: Douglas Schilling Landgraf <dougsland@redhat.com>
Diffstat (limited to 'linux/drivers/media/radio/radio-mr800.c')
-rw-r--r-- | linux/drivers/media/radio/radio-mr800.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/radio/radio-mr800.c b/linux/drivers/media/radio/radio-mr800.c index ff0d5240c..7683af18d 100644 --- a/linux/drivers/media/radio/radio-mr800.c +++ b/linux/drivers/media/radio/radio-mr800.c @@ -169,7 +169,7 @@ static struct usb_driver usb_amradio_driver = { .reset_resume = usb_amradio_resume, #endif .id_table = usb_amradio_device_table, - .supports_autosuspend = 1, + .supports_autosuspend = 0, }; /* switch on radio. Send 8 bytes to device. */ |