From patchwork Thu Apr 21 06:27:37 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vinod Koul X-Patchwork-Id: 8896341 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 0B36FBF29F for ; Thu, 21 Apr 2016 06:26:05 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 5057B202E5 for ; Thu, 21 Apr 2016 06:26:04 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id 52D2F20218 for ; Thu, 21 Apr 2016 06:26:03 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id 703F42668CA; Thu, 21 Apr 2016 08:26:02 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_NONE, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 Received: from alsa0.perex.cz (localhost [127.0.0.1]) by alsa0.perex.cz (Postfix) with ESMTP id 606142667F0; Thu, 21 Apr 2016 08:23:27 +0200 (CEST) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id 08ECD266815; Thu, 21 Apr 2016 08:23:26 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by alsa0.perex.cz (Postfix) with ESMTP id 9ACC6264F22 for ; Thu, 21 Apr 2016 08:23:11 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga101.fm.intel.com with ESMTP; 20 Apr 2016 23:23:10 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,512,1455004800"; d="scan'208";a="959579706" Received: from vkoul-udesk7.iind.intel.com ([10.223.84.143]) by orsmga002.jf.intel.com with ESMTP; 20 Apr 2016 23:23:08 -0700 From: Vinod Koul To: alsa-devel@alsa-project.org Date: Thu, 21 Apr 2016 11:57:37 +0530 Message-Id: <1461220058-1378-3-git-send-email-vinod.koul@intel.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1461220058-1378-1-git-send-email-vinod.koul@intel.com> References: <1461220058-1378-1-git-send-email-vinod.koul@intel.com> Cc: tiwai@suse.de, patches.audio@intel.com, liam.r.girdwood@linux.intel.com, Vinod Koul , broonie@kernel.org, Shreyas NC Subject: [alsa-devel] [PATCH v3 2/3] Add u8 in type_compat.h X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP From: Shreyas NC Skylake headers use u8 data types which were not present in type_compat so add them. Signed-off-by: Shreyas NC Signed-off-by: Vinod Koul --- include/sound/type_compat.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/sound/type_compat.h b/include/sound/type_compat.h index eec86e4bc41e..e973ff3139e2 100644 --- a/include/sound/type_compat.h +++ b/include/sound/type_compat.h @@ -32,9 +32,11 @@ typedef int32_t __s32; #define __le64 __u64 #define __le32 __u32 #define __le16 __u16 +#define __le8 __u8 #define __be64 __u64 #define __be32 __u32 #define __be16 __u16 +#define __be8 __u8 #endif /* DOC_HIDDEN */ #endif /* __TYPE_COMPAT_H */