cregit-Linux how code gets into the kernel

Release 4.11 drivers/gpu/drm/zte/zx_drm_drv.h

/*
 * Copyright 2016 Linaro Ltd.
 * Copyright 2016 ZTE Corporation.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 */

#ifndef __ZX_DRM_DRV_H__

#define __ZX_DRM_DRV_H__

extern struct platform_driver zx_crtc_driver;
extern struct platform_driver zx_hdmi_driver;
extern struct platform_driver zx_tvenc_driver;


static inline u32 zx_readl(void __iomem *reg) { return readl_relaxed(reg); }

Contributors

PersonTokensPropCommitsCommitProp
Shawn Guo18100.00%1100.00%
Total18100.00%1100.00%


static inline void zx_writel(void __iomem *reg, u32 val) { writel_relaxed(val, reg); }

Contributors

PersonTokensPropCommitsCommitProp
Shawn Guo22100.00%1100.00%
Total22100.00%1100.00%


static inline void zx_writel_mask(void __iomem *reg, u32 mask, u32 val) { u32 tmp; tmp = zx_readl(reg); tmp = (tmp & ~mask) | (val & mask); zx_writel(reg, tmp); }

Contributors

PersonTokensPropCommitsCommitProp
Shawn Guo50100.00%1100.00%
Total50100.00%1100.00%

#endif /* __ZX_DRM_DRV_H__ */

Overall Contributors

PersonTokensPropCommitsCommitProp
Shawn Guo115100.00%2100.00%
Total115100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.