static int edp_edid_debugfs_show(struct seq_file *s, void *v)
{
- int i = 0;
- unsigned char buf[12];
struct rk32_edp *edp = s->private;
if (!edp) {
dev_err(edp->dev, "no edp device!\n");
return -ENODEV;
}
+ rk32_edp_read_edid(edp);
seq_printf(s,"edid");
return 0;
}
/*
- * Samsung DP (Display port) register interface driver.
- *
- * Copyright (C) 2012 Samsung Electronics Co., Ltd.
- * Author: Jingoo Han <jg1.han@samsung.com>
+ *RockChip DP (Display port) register interface driver.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
#include <linux/rockchip/cpu.h>
#include <linux/rockchip/iomap.h>
#include <linux/rockchip/grf.h>
-
#include "rk32_dp.h"