From patchwork Tue Nov 14 09:25:05 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sakari Ailus X-Patchwork-Id: 13455016 Received: from lindbergh.monkeyblade.net (lindbergh.monkeyblade.net [23.128.96.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 92C1B168A5 for ; Tue, 14 Nov 2023 09:25:18 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=intel.com header.i=@intel.com header.b="S1iVLVLC" Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.93]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9F6E4131 for ; Tue, 14 Nov 2023 01:25:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1699953917; x=1731489917; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=cmVJ+UbAOe16svc00+rin358rFGDTrkdkKaEtYoodFA=; b=S1iVLVLCwGN+ZKV6Hc1IEkJOcQgF8lwTx4U9/vMyoZZS0DLXHfB/CmBa whybPFUiLuzvbM7WNXxjMdywC34O+3ncNu1UYVxK0Ol0iMuapqkxEZ84x 8WUSJpwmd9hX7LRaT1/Z0MY8a4ToL6HiSEQ2i+zFJB5iEt+W/V6ynsnaK 7O9jdFt9aB9BMXyy5ZiR+/onjAdYihrO6eCjJo2eCD0L5JHZs5BpA/AUB txR2jDuiZf+/poPaP49dUCOI7iQwzRcdZnpFmmqDni+X/uvq7p1JeFe4J SoNLRVbhGuRKjy1liYxwAU+fRQLzAuX/M3V1z9r4VdvjnQdANzW/9ULLs Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10893"; a="387781658" X-IronPort-AV: E=Sophos;i="6.03,301,1694761200"; d="scan'208";a="387781658" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Nov 2023 01:25:16 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10893"; a="938015855" X-IronPort-AV: E=Sophos;i="6.03,301,1694761200"; d="scan'208";a="938015855" Received: from turnipsi.fi.intel.com (HELO kekkonen.fi.intel.com) ([10.237.72.44]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Nov 2023 01:25:15 -0800 Received: from svinhufvud.ger.corp.intel.com (localhost [IPv6:::1]) by kekkonen.fi.intel.com (Postfix) with ESMTP id 0B60311F894; Tue, 14 Nov 2023 11:25:11 +0200 (EET) From: Sakari Ailus To: linux-media@vger.kernel.org Cc: laurent.pinchart@ideasonboard.com, hdegoede@redhat.com Subject: [PATCH v4 1/6] media: v4l: cci: Include linux/bits.h Date: Tue, 14 Nov 2023 11:25:05 +0200 Message-Id: <20231114092510.1443545-2-sakari.ailus@linux.intel.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20231114092510.1443545-1-sakari.ailus@linux.intel.com> References: <20231114092510.1443545-1-sakari.ailus@linux.intel.com> Precedence: bulk X-Mailing-List: linux-media@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 linux/bits.h is needed for GENMASK(). Include it. Signed-off-by: Sakari Ailus Reviewed-by: Hans de Goede Reviewed-by: Laurent Pinchart --- include/media/v4l2-cci.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/media/v4l2-cci.h b/include/media/v4l2-cci.h index 0f6803e4b17e..f2c2962e936b 100644 --- a/include/media/v4l2-cci.h +++ b/include/media/v4l2-cci.h @@ -7,6 +7,7 @@ #ifndef _V4L2_CCI_H #define _V4L2_CCI_H +#include #include struct i2c_client;