1*c3b923b1Sriastradh /* $NetBSD: icl_dsi.c,v 1.1 2021/12/19 11:39:10 riastradh Exp $ */
2*c3b923b1Sriastradh
3*c3b923b1Sriastradh /*-
4*c3b923b1Sriastradh * Copyright (c) 2021 The NetBSD Foundation, Inc.
5*c3b923b1Sriastradh * All rights reserved.
6*c3b923b1Sriastradh *
7*c3b923b1Sriastradh * Redistribution and use in source and binary forms, with or without
8*c3b923b1Sriastradh * modification, are permitted provided that the following conditions
9*c3b923b1Sriastradh * are met:
10*c3b923b1Sriastradh * 1. Redistributions of source code must retain the above copyright
11*c3b923b1Sriastradh * notice, this list of conditions and the following disclaimer.
12*c3b923b1Sriastradh * 2. Redistributions in binary form must reproduce the above copyright
13*c3b923b1Sriastradh * notice, this list of conditions and the following disclaimer in the
14*c3b923b1Sriastradh * documentation and/or other materials provided with the distribution.
15*c3b923b1Sriastradh *
16*c3b923b1Sriastradh * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17*c3b923b1Sriastradh * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18*c3b923b1Sriastradh * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19*c3b923b1Sriastradh * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20*c3b923b1Sriastradh * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21*c3b923b1Sriastradh * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22*c3b923b1Sriastradh * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23*c3b923b1Sriastradh * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24*c3b923b1Sriastradh * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25*c3b923b1Sriastradh * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26*c3b923b1Sriastradh * POSSIBILITY OF SUCH DAMAGE.
27*c3b923b1Sriastradh */
28*c3b923b1Sriastradh
29*c3b923b1Sriastradh #include <sys/cdefs.h>
30*c3b923b1Sriastradh __KERNEL_RCSID(0, "$NetBSD: icl_dsi.c,v 1.1 2021/12/19 11:39:10 riastradh Exp $");
31*c3b923b1Sriastradh
32*c3b923b1Sriastradh #include "display/intel_dsi.h"
33*c3b923b1Sriastradh
34*c3b923b1Sriastradh void
icl_dsi_init(struct drm_i915_private * dev_priv)35*c3b923b1Sriastradh icl_dsi_init(struct drm_i915_private *dev_priv)
36*c3b923b1Sriastradh {
37*c3b923b1Sriastradh }
38