From patchwork Thu Nov 12 21:57:42 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexey Brodkin X-Patchwork-Id: 543718 X-Patchwork-Delegate: alexey.brodkin@gmail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 7C7EC141428 for ; Fri, 13 Nov 2015 09:03:33 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 446554B921; Thu, 12 Nov 2015 23:03:32 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id e7VFxuhcwMxy; Thu, 12 Nov 2015 23:03:31 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 478014B913; Thu, 12 Nov 2015 23:03:31 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 887F24B913 for ; Thu, 12 Nov 2015 23:03:29 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oG_kz6MF9QlV for ; Thu, 12 Nov 2015 23:03:29 +0100 (CET) X-Greylist: delayed 333 seconds by postgrey-1.34 at theia; Thu, 12 Nov 2015 23:03:25 CET X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from smtprelay.synopsys.com (us01smtprelay-2.synopsys.com [198.182.47.9]) by theia.denx.de (Postfix) with ESMTPS id 3A9BA4B912 for ; Thu, 12 Nov 2015 23:03:25 +0100 (CET) Received: from dc8secmta1.synopsys.com (dc8secmta1.synopsys.com [10.13.218.200]) by smtprelay.synopsys.com (Postfix) with ESMTP id 56AB424E16B2 for ; Thu, 12 Nov 2015 13:57:49 -0800 (PST) Received: from dc8secmta1.internal.synopsys.com (dc8secmta1.internal.synopsys.com [127.0.0.1]) by dc8secmta1.internal.synopsys.com (Service) with ESMTP id C167F27124 for ; Thu, 12 Nov 2015 13:57:49 -0800 (PST) Received: from mailhost.synopsys.com (mailhost1.synopsys.com [10.12.238.239]) by dc8secmta1.internal.synopsys.com (Service) with ESMTP id A4A3227118 for ; Thu, 12 Nov 2015 13:57:49 -0800 (PST) Received: from mailhost.synopsys.com (localhost [127.0.0.1]) by mailhost.synopsys.com (Postfix) with ESMTP id 959AD516; Thu, 12 Nov 2015 13:57:49 -0800 (PST) Received: from abrodkin-e7440l.internal.synopsys.com (unknown [10.225.15.89]) by mailhost.synopsys.com (Postfix) with ESMTP id F39EB515; Thu, 12 Nov 2015 13:57:47 -0800 (PST) From: Alexey Brodkin To: u-boot@lists.denx.de Date: Fri, 13 Nov 2015 00:57:42 +0300 Message-Id: <1447365462-16676-1-git-send-email-abrodkin@synopsys.com> X-Mailer: git-send-email 2.4.3 Cc: Alexey Brodkin Subject: [U-Boot] [PATCH] arc: add empty asm/processor.h to satisfy compilation of USB code X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" common/usb.c unconditionally includes And now to allow USB support on ARC boards we have to have that header. Signed-off-by: Alexey Brodkin --- arch/arc/include/asm/processor.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 arch/arc/include/asm/processor.h diff --git a/arch/arc/include/asm/processor.h b/arch/arc/include/asm/processor.h new file mode 100644 index 0000000..6355423 --- /dev/null +++ b/arch/arc/include/asm/processor.h @@ -0,0 +1,12 @@ +/* + * Copyright (C) 2015 Synopsys, Inc. All rights reserved. + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef _ASM_ARC_PROCESSOR_H +#define _ASM_ARC_PROCESSOR_H + +/* This file is required by some generic code like USB etc */ + +#endif /* _ASM_ARC_PROCESSOR_H */