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: submit/tizen/20160318.071304~188 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=edd99f8983648cd58db3d968db90bfe90764bbbe;p=profile%2Fcommon%2Fplatform%2Fkernel%2Fu-boot-artik.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 71dc049da..18b50a47b 100644 --- a/arch/arm/include/asm/types.h +++ b/arch/arm/include/asm/types.h @@ -50,4 +50,5 @@ typedef unsigned long phys_size_t; #endif /* __KERNEL__ */ +typedef unsigned long resource_size_t; #endif