diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2020-02-26 15:54:52 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-02-26 15:54:52 -0800 |
commit | bfdc6d91a25f4545bcd1b12e3219af4838142ef1 (patch) | |
tree | ce77383323b6e86d4dbe7578e687aeda178b3a8b /drivers | |
parent | 91ad64a84e9e63e2906ae714dfa3933dd3f64c64 (diff) | |
parent | 0cbb4f9c69827decf56519c2f63918f16904ede5 (diff) |
Merge tag 'tag-chrome-platform-fixes-for-v5.6-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux
Pull chrome platform fix from Benson Leung:
"Fix a build warning"
* tag 'tag-chrome-platform-fixes-for-v5.6-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux:
platform/chrome: wilco_ec: Include asm/unaligned instead of linux/ path
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/platform/chrome/wilco_ec/properties.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/chrome/wilco_ec/properties.c b/drivers/platform/chrome/wilco_ec/properties.c index e69682c95ea2..62f27610dd33 100644 --- a/drivers/platform/chrome/wilco_ec/properties.c +++ b/drivers/platform/chrome/wilco_ec/properties.c @@ -5,7 +5,7 @@ #include <linux/platform_data/wilco-ec.h> #include <linux/string.h> -#include <linux/unaligned/le_memmove.h> +#include <asm/unaligned.h> /* Operation code; what the EC should do with the property */ enum ec_property_op { |