mirror of
https://github.com/torvalds/linux.git
synced 2026-06-04 04:23:35 +02:00
HID: sony: fix incorrect force-feedback check in sony_suspend()
This commit fixes the incorrect force-feedback check in sony_suspend(), without this the check will always be true due to checking a constant define that is never 0. Signed-off-by: Rosalie Wanders <rosalie@mailbox.org> Signed-off-by: Jiri Kosina <jkosina@suse.com>
This commit is contained in:
parent
d97e7d7c30
commit
278dd04879
|
|
@ -2456,11 +2456,10 @@ static void sony_remove(struct hid_device *hdev)
|
|||
static int sony_suspend(struct hid_device *hdev, pm_message_t message)
|
||||
{
|
||||
#ifdef CONFIG_SONY_FF
|
||||
struct sony_sc *sc = hid_get_drvdata(hdev);
|
||||
|
||||
/* On suspend stop any running force-feedback events */
|
||||
if (SONY_FF_SUPPORT) {
|
||||
struct sony_sc *sc = hid_get_drvdata(hdev);
|
||||
|
||||
if (sc->quirks & SONY_FF_SUPPORT) {
|
||||
sc->left = sc->right = 0;
|
||||
sony_send_output_report(sc);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user