dc.c (c09c9dd2e9c732658c744a802101d5c34fedde22) dc.c (f98828769c8838f526703ef180b3088a714af2f9)
1/*
2 * Copyright (C) 2012 Avionic Design GmbH
3 * Copyright (C) 2012 NVIDIA CORPORATION. All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */

--- 1718 unchanged lines hidden (view full) ---

1727 cursor = tegra_dc_cursor_plane_create(drm, dc);
1728 if (IS_ERR(cursor)) {
1729 err = PTR_ERR(cursor);
1730 goto cleanup;
1731 }
1732 }
1733
1734 err = drm_crtc_init_with_planes(drm, &dc->base, primary, cursor,
1/*
2 * Copyright (C) 2012 Avionic Design GmbH
3 * Copyright (C) 2012 NVIDIA CORPORATION. All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */

--- 1718 unchanged lines hidden (view full) ---

1727 cursor = tegra_dc_cursor_plane_create(drm, dc);
1728 if (IS_ERR(cursor)) {
1729 err = PTR_ERR(cursor);
1730 goto cleanup;
1731 }
1732 }
1733
1734 err = drm_crtc_init_with_planes(drm, &dc->base, primary, cursor,
1735 &tegra_crtc_funcs);
1735 &tegra_crtc_funcs, NULL);
1736 if (err < 0)
1737 goto cleanup;
1738
1739 drm_mode_crtc_set_gamma_size(&dc->base, 256);
1740 drm_crtc_helper_add(&dc->base, &tegra_crtc_helper_funcs);
1741
1742 /*
1743 * Keep track of the minimum pitch alignment across all display

--- 357 unchanged lines hidden ---
1736 if (err < 0)
1737 goto cleanup;
1738
1739 drm_mode_crtc_set_gamma_size(&dc->base, 256);
1740 drm_crtc_helper_add(&dc->base, &tegra_crtc_helper_funcs);
1741
1742 /*
1743 * Keep track of the minimum pitch alignment across all display

--- 357 unchanged lines hidden ---