| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0+ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * shmob_drm_plane.c -- SH Mobile DRM Planes |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (C) 2012 Renesas Electronics Corporation |
|---|
| 5 | 6 | * |
|---|
| 6 | 7 | * 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 | | -#include <drm/drmP.h> |
|---|
| 15 | 10 | #include <drm/drm_crtc.h> |
|---|
| 16 | 11 | #include <drm/drm_crtc_helper.h> |
|---|
| 17 | 12 | #include <drm/drm_fb_cma_helper.h> |
|---|
| 13 | +#include <drm/drm_fourcc.h> |
|---|
| 18 | 14 | #include <drm/drm_gem_cma_helper.h> |
|---|
| 19 | 15 | |
|---|
| 20 | 16 | #include "shmob_drm_drv.h" |
|---|