| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0+ */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * rcar_du_encoder.h -- R-Car Display Unit Encoder |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (C) 2013-2014 Renesas Electronics Corporation |
|---|
| 5 | 6 | * |
|---|
| 6 | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
|---|
| 7 | | - * |
|---|
| 8 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 9 | | - * it under the terms of the GNU General Public License as published by |
|---|
| 10 | | - * the Free Software Foundation; either version 2 of the License, or |
|---|
| 11 | | - * (at your option) any later version. |
|---|
| 12 | 8 | */ |
|---|
| 13 | 9 | |
|---|
| 14 | 10 | #ifndef __RCAR_DU_ENCODER_H__ |
|---|
| 15 | 11 | #define __RCAR_DU_ENCODER_H__ |
|---|
| 16 | 12 | |
|---|
| 17 | | -#include <drm/drm_crtc.h> |
|---|
| 18 | 13 | #include <drm/drm_encoder.h> |
|---|
| 19 | 14 | |
|---|
| 20 | | -struct drm_panel; |
|---|
| 21 | 15 | struct rcar_du_device; |
|---|
| 22 | 16 | |
|---|
| 23 | 17 | struct rcar_du_encoder { |
|---|
| .. | .. |
|---|
| 32 | 26 | |
|---|
| 33 | 27 | int rcar_du_encoder_init(struct rcar_du_device *rcdu, |
|---|
| 34 | 28 | enum rcar_du_output output, |
|---|
| 35 | | - struct device_node *enc_node, |
|---|
| 36 | | - struct device_node *con_node); |
|---|
| 29 | + struct device_node *enc_node); |
|---|
| 37 | 30 | |
|---|
| 38 | 31 | #endif /* __RCAR_DU_ENCODER_H__ */ |
|---|