3fc661a98c
As usual these patches were extracted from the raspberry pi repo: https://github.com/raspberrypi/linux/tree/rpi-4.4.y Also alphabetically order sound-soc kernel packages. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
21 lines
617 B
Diff
21 lines
617 B
Diff
From 012687428d83585c5d55a08b3779ea278fcc35f6 Mon Sep 17 00:00:00 2001
|
|
From: popcornmix <popcornmix@gmail.com>
|
|
Date: Fri, 17 Apr 2015 16:58:45 +0100
|
|
Subject: [PATCH 002/381] smsc95xx: Disable turbo mode by default
|
|
|
|
---
|
|
drivers/net/usb/smsc95xx.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/net/usb/smsc95xx.c
|
|
+++ b/drivers/net/usb/smsc95xx.c
|
|
@@ -70,7 +70,7 @@ struct smsc95xx_priv {
|
|
u8 suspend_flags;
|
|
};
|
|
|
|
-static bool turbo_mode = true;
|
|
+static bool turbo_mode = false;
|
|
module_param(turbo_mode, bool, 0644);
|
|
MODULE_PARM_DESC(turbo_mode, "Enable multiple frames per Rx transaction");
|
|
|