From: RISCi_ATOM Date: Thu, 13 Jun 2019 01:29:07 +0000 (-0400) Subject: Bump linux-libre kernel to 4.4.181 X-Git-Tag: v1.4.8~13 X-Git-Url: https://git.librecmc.org/?p=librecmc%2Flibrecmc.git;a=commitdiff_plain;h=2a8b25bd07c2ca83638aa6c21ce6cd66e6247e37 Bump linux-libre kernel to 4.4.181 --- diff --git a/include/kernel-version.mk b/include/kernel-version.mk index 58a089d7ec..1f143db9ae 100644 --- a/include/kernel-version.mk +++ b/include/kernel-version.mk @@ -2,9 +2,9 @@ LINUX_RELEASE?=1 -LINUX_VERSION-4.4 = .180 +LINUX_VERSION-4.4 = .181 -LINUX_KERNEL_HASH-4.4.180 = 4f9d45d8b4049a9d4cb13943809ccb66c76b7dc3fbeaec13362846aa8976f394 +LINUX_KERNEL_HASH-4.4.181 = 9488e16b7e189ca3b914396120557c571aa4a6290f15010c3413bd3b143a2dc7 ifdef KERNEL_PATCHVER LINUX_VERSION:=$(KERNEL_PATCHVER)$(strip $(LINUX_VERSION-$(KERNEL_PATCHVER))) diff --git a/target/linux/generic/patches-4.4/080-spi-introduce-accelerated-read-support-for-spi-flash.patch b/target/linux/generic/patches-4.4/080-spi-introduce-accelerated-read-support-for-spi-flash.patch index a717f1cee2..42791ba9a9 100644 --- a/target/linux/generic/patches-4.4/080-spi-introduce-accelerated-read-support-for-spi-flash.patch +++ b/target/linux/generic/patches-4.4/080-spi-introduce-accelerated-read-support-for-spi-flash.patch @@ -24,7 +24,7 @@ Signed-off-by: Mark Brown --- a/drivers/spi/spi.c +++ b/drivers/spi/spi.c -@@ -1141,6 +1141,7 @@ static void __spi_pump_messages(struct s +@@ -1143,6 +1143,7 @@ static void __spi_pump_messages(struct s } } @@ -32,7 +32,7 @@ Signed-off-by: Mark Brown trace_spi_message_start(master->cur_msg); if (master->prepare_message) { -@@ -1150,6 +1151,7 @@ static void __spi_pump_messages(struct s +@@ -1152,6 +1153,7 @@ static void __spi_pump_messages(struct s "failed to prepare message: %d\n", ret); master->cur_msg->status = ret; spi_finalize_current_message(master); @@ -40,7 +40,7 @@ Signed-off-by: Mark Brown return; } master->cur_msg_prepared = true; -@@ -1159,6 +1161,7 @@ static void __spi_pump_messages(struct s +@@ -1161,6 +1163,7 @@ static void __spi_pump_messages(struct s if (ret) { master->cur_msg->status = ret; spi_finalize_current_message(master); @@ -48,7 +48,7 @@ Signed-off-by: Mark Brown return; } -@@ -1166,8 +1169,10 @@ static void __spi_pump_messages(struct s +@@ -1168,8 +1171,10 @@ static void __spi_pump_messages(struct s if (ret) { dev_err(&master->dev, "failed to transfer one message from queue\n"); @@ -59,7 +59,7 @@ Signed-off-by: Mark Brown } /** -@@ -2335,6 +2340,46 @@ int spi_async_locked(struct spi_device * +@@ -2337,6 +2342,46 @@ int spi_async_locked(struct spi_device * EXPORT_SYMBOL_GPL(spi_async_locked);