#ifndef __ASM_GENERIC_UACCESS_UNALIGNED_H #define __ASM_GENERIC_UACCESS_UNALIGNED_H /* * This macro should be used instead of __get_user() when accessing * values at locations that are not known to be aligned. */ #define __get_user_unaligned(x, ptr) \ ({ \ __typeof__ (*(ptr)) __x; \ __copy_from_user(&__x, (ptr), sizeof(*(ptr))) ? -EFAULT : 0; \ (x) = __x; \ }) /* * This macro should be used instead of __put_user() when accessing * values at locations that are not known to be aligned. */ #define __put_user_unaligned(x, ptr) \ ({ \ __typeof__ (*(ptr)) __x = (x); \ __copy_to_user((ptr), &__x, sizeof(*(ptr))) ? -EFAULT : 0; \ }) #endif /* __ASM_GENERIC_UACCESS_UNALIGNED_H */ mg src='/cgit.png' alt='cgit logo'/> index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/tools/scripts
diff options
context:
space:
mode:
authorJisheng Zhang <jszhang@marvell.com>2017-01-23 15:15:32 +0800
committerLinus Walleij <linus.walleij@linaro.org>2017-01-30 09:15:10 +0100
commite82d02580af45663fad6d3596e4344c606e81e10 (patch)
tree5a19fff63af270f77ab5ae79fdf2c806e4e4ebb2 /tools/scripts
parent566cf877a1fcb6d6dc0126b076aad062054c2637 (diff)
pinctrl: berlin-bg4ct: fix the value for "sd1a" of pin SCRD0_CRD_PRES
This should be a typo. Signed-off-by: Jisheng Zhang <jszhang@marvell.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'tools/scripts')