Browse Source

u-boot: update to 2016.07

Waldemar Brodkorb 7 years ago
parent
commit
120fbb3324
2 changed files with 2 additions and 13 deletions
  1. 2 2
      package/u-boot/Makefile
  2. 0 11
      package/u-boot/patches/patch-drivers_video_ipu_common_c

+ 2 - 2
package/u-boot/Makefile

@@ -4,9 +4,9 @@
 include $(ADK_TOPDIR)/rules.mk
 
 PKG_NAME:=		u-boot
-PKG_VERSION:=		2016.05
+PKG_VERSION:=		2016.07
 PKG_RELEASE:=		1
-PKG_HASH:=		87d02275615aaf0cd007b54cbe9fbadceef2bee7c79e6c323ea1ae8956dcb171
+PKG_HASH:=		974fb7225c0af6a721307631f66b81e20dbda82a4d7cc32aba2a625727231253
 PKG_DESCR:=		portable bootloader
 PKG_SECTION:=		base/boot
 HOST_BUILDDEP:=		libressl-host device-tree-compiler-host

+ 0 - 11
package/u-boot/patches/patch-drivers_video_ipu_common_c

@@ -1,11 +0,0 @@
---- u-boot-2016.05.orig/drivers/video/ipu_common.c	2016-05-16 16:40:32.000000000 +0200
-+++ u-boot-2016.05/drivers/video/ipu_common.c	2016-06-11 22:10:53.808259263 +0200
-@@ -352,7 +352,7 @@ static int ipu_pixel_clk_set_rate(struct
- 	 */
- 	__raw_writel((div / 16) << 16, DI_BS_CLKGEN1(clk->id));
- 
--	clk->rate = (u64)(clk->parent->rate * 16) / div;
-+	clk->rate = (u64)lldiv(clk->parent->rate * 16, div);
- 
- 	return 0;
- }