From patchwork Tue Aug 18 08:36:35 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hans Verkuil X-Patchwork-Id: 7029841 Return-Path: X-Original-To: patchwork-linux-samsung-soc@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 BBDB8C05AD for ; Tue, 18 Aug 2015 08:41:10 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 0333A206A5 for ; Tue, 18 Aug 2015 08:41:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id F17EC2066E for ; Tue, 18 Aug 2015 08:41:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752287AbbHRIkT (ORCPT ); Tue, 18 Aug 2015 04:40:19 -0400 Received: from aer-iport-2.cisco.com ([173.38.203.52]:29845 "EHLO aer-iport-2.cisco.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752525AbbHRIjP (ORCPT ); Tue, 18 Aug 2015 04:39:15 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cisco.com; i=@cisco.com; l=1497; q=dns/txt; s=iport; t=1439887155; x=1441096755; h=from:to:cc:subject:date:message-id; bh=cpGjTjbb2czDrGX1lYBZ+VvWGh5vOGb8t3AhHH/garY=; b=Jo2SKXlPFWJlmzQFFB0wi/aSiya4cTsUXPoFGQw99vqHq+NqquVTLqsV gCTJnTne+Ym8O7SjBW8ycPVrsTevcecYef26L0rAS9Xx9np5u+ixNc4SJ ImjNPCmf6mhgcp1LqKXhdREYkD536iEpERmN0kOTnoYQa0C0jv51/5kNb M=; X-IronPort-AV: E=Sophos;i="5.15,700,1432598400"; d="scan'208";a="611019322" Received: from aer-iport-nat.cisco.com (HELO aer-core-1.cisco.com) ([173.38.203.22]) by aer-iport-2.cisco.com with ESMTP; 18 Aug 2015 08:39:05 +0000 Received: from cobaltpc1.cisco.com (dhcp-10-54-92-107.cisco.com [10.54.92.107]) by aer-core-1.cisco.com (8.14.5/8.14.5) with ESMTP id t7I8d42A015361; Tue, 18 Aug 2015 08:39:05 GMT From: Hans Verkuil To: linux-media@vger.kernel.org Cc: dri-devel@lists.freedesktop.org, m.szyprowski@samsung.com, linux-input@vger.kernel.org, linux-samsung-soc@vger.kernel.org, lars@opdenkamp.eu, kamil@wypas.org, linux@arm.linux.org.uk, Hans Verkuil Subject: [PATCHv2 1/4] Makefile.am: copy cec headers with make sync-with-kernel Date: Tue, 18 Aug 2015 10:36:35 +0200 Message-Id: X-Mailer: git-send-email 2.1.4 In-Reply-To: References: In-Reply-To: References: Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org X-Spam-Status: No, score=-14.9 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY, USER_IN_DEF_DKIM_WL autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Copy the new cec headers. Signed-off-by: Hans Verkuil --- Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile.am b/Makefile.am index 1a61592..b8c450d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,6 +21,8 @@ sync-with-kernel: ! -f $(KERNEL_DIR)/usr/include/linux/v4l2-common.h -o \ ! -f $(KERNEL_DIR)/usr/include/linux/v4l2-subdev.h -o \ ! -f $(KERNEL_DIR)/usr/include/linux/v4l2-mediabus.h -o \ + ! -f $(KERNEL_DIR)/usr/include/linux/cec.h -o \ + ! -f $(KERNEL_DIR)/usr/include/linux/cec-funcs.h -o \ ! -f $(KERNEL_DIR)/usr/include/linux/ivtv.h -o \ ! -f $(KERNEL_DIR)/usr/include/linux/dvb/frontend.h -o \ ! -f $(KERNEL_DIR)/usr/include/linux/dvb/dmx.h -o \ @@ -38,6 +40,8 @@ sync-with-kernel: cp -a $(KERNEL_DIR)/usr/include/linux/v4l2-mediabus.h $(top_srcdir)/include/linux cp -a $(KERNEL_DIR)/usr/include/linux/media-bus-format.h $(top_srcdir)/include/linux cp -a $(KERNEL_DIR)/usr/include/linux/media.h $(top_srcdir)/include/linux + cp -a $(KERNEL_DIR)/usr/include/linux/cec.h $(top_srcdir)/include/linux + cp -a $(KERNEL_DIR)/usr/include/linux/cec-funcs.h $(top_srcdir)/include/linux cp -a $(KERNEL_DIR)/usr/include/linux/ivtv.h $(top_srcdir)/include/linux cp -a $(KERNEL_DIR)/usr/include/linux/dvb/frontend.h $(top_srcdir)/include/linux/dvb cp -a $(KERNEL_DIR)/usr/include/linux/dvb/dmx.h $(top_srcdir)/include/linux/dvb