From: Kishon Vijay Abraham I Date: Mon, 23 Feb 2015 13:09:59 +0000 (+0530) Subject: include: asm: types: add resource_size_t type X-Git-Tag: v2015.07-rc1~389 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=72e7c32fe4dd21aecd1c37eb7f338613b18af148;p=platform%2Fkernel%2Fu-boot.git include: asm: types: add resource_size_t type Added resource_size_t type in order to get rid of the following compilation error whiel building dwc3 gadget. include/linux/ioport.h:19:2: error: unknown type name ‘resource_size_t’ Signed-off-by: Kishon Vijay Abraham I Reviewed-by: Lukasz Majewski --- diff --git a/arch/arm/include/asm/types.h b/arch/arm/include/asm/types.h index 2326420..ee77c41 100644 --- a/arch/arm/include/asm/types.h +++ b/arch/arm/include/asm/types.h @@ -54,4 +54,5 @@ typedef unsigned long phys_size_t; #endif /* __KERNEL__ */ +typedef unsigned long resource_size_t; #endif