From: Linus Torvalds Date: Fri, 30 Nov 2018 20:26:06 +0000 (-0800) Subject: Merge tag 'driver-core-4.20-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git... X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=d7aca8a78c8bc5d3707691aab13cb4f7f6de696f;p=openwrt%2Fstaging%2Fblogic.git Merge tag 'driver-core-4.20-rc5' of git://git./linux/kernel/git/gregkh/driver-core Pull driver core fix from Greg KH: "Here is a single driver core fix for 4.20-rc5 It resolves an issue with the data alignment in 'struct devres' for the ARC platform. The full details are in the commit changelog, but the short summary is the change is a single line: - unsigned long long data[]; /* guarantee ull alignment */ + u8 __aligned(ARCH_KMALLOC_MINALIGN) data[]; This has been in linux-next for a while with no reported issues" * tag 'driver-core-4.20-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core: devres: Align data[] to ARCH_KMALLOC_MINALIGN --- d7aca8a78c8bc5d3707691aab13cb4f7f6de696f