cregit-Linux how code gets into the kernel

Release 4.11 drivers/gpu/drm/udl/udl_encoder.c

/*
 * Copyright (C) 2012 Red Hat
 * based in parts on udlfb.c:
 * Copyright (C) 2009 Roberto De Ioris <roberto@unbit.it>
 * Copyright (C) 2009 Jaya Kumar <jayakumar.lkml@gmail.com>
 * Copyright (C) 2009 Bernie Thompson <bernie@plugable.com>
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License v2. See the file COPYING in the main directory of this archive for
 * more details.
 */

#include <drm/drmP.h>
#include <drm/drm_crtc.h>
#include <drm/drm_crtc_helper.h>
#include "udl_drv.h"

/* dummy encoder */

static void udl_enc_destroy(struct drm_encoder *encoder) { drm_encoder_cleanup(encoder); kfree(encoder); }

Contributors

PersonTokensPropCommitsCommitProp
Dave Airlie2095.24%150.00%
Sachin Kamat14.76%150.00%
Total21100.00%2100.00%


static void udl_encoder_disable(struct drm_encoder *encoder) { }

Contributors

PersonTokensPropCommitsCommitProp
Dave Airlie10100.00%1100.00%
Total10100.00%1100.00%


static void udl_encoder_prepare(struct drm_encoder *encoder) { }

Contributors

PersonTokensPropCommitsCommitProp
Dave Airlie10100.00%1100.00%
Total10100.00%1100.00%


static void udl_encoder_commit(struct drm_encoder *encoder) { }

Contributors

PersonTokensPropCommitsCommitProp
Dave Airlie10100.00%1100.00%
Total10100.00%1100.00%


static void udl_encoder_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode, struct drm_display_mode *adjusted_mode) { }

Contributors

PersonTokensPropCommitsCommitProp
Dave Airlie20100.00%1100.00%
Total20100.00%1100.00%


static void udl_encoder_dpms(struct drm_encoder *encoder, int mode) { }

Contributors

PersonTokensPropCommitsCommitProp
Dave Airlie13100.00%1100.00%
Total13100.00%1100.00%

static const struct drm_encoder_helper_funcs udl_helper_funcs = { .dpms = udl_encoder_dpms, .prepare = udl_encoder_prepare, .mode_set = udl_encoder_mode_set, .commit = udl_encoder_commit, .disable = udl_encoder_disable, }; static const struct drm_encoder_funcs udl_enc_funcs = { .destroy = udl_enc_destroy, };
struct drm_encoder *udl_encoder_init(struct drm_device *dev) { struct drm_encoder *encoder; encoder = kzalloc(sizeof(struct drm_encoder), GFP_KERNEL); if (!encoder) return NULL; drm_encoder_init(dev, encoder, &udl_enc_funcs, DRM_MODE_ENCODER_TMDS, NULL); drm_encoder_helper_add(encoder, &udl_helper_funcs); encoder->possible_crtcs = 1; return encoder; }

Contributors

PersonTokensPropCommitsCommitProp
Dave Airlie6797.10%150.00%
Ville Syrjälä22.90%150.00%
Total69100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Dave Airlie20797.18%125.00%
David Howells31.41%125.00%
Ville Syrjälä20.94%125.00%
Sachin Kamat10.47%125.00%
Total213100.00%4100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.