Subversion Repositories Kolibri OS

Rev

Rev 6084 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6084 Rev 6937
Line 30... Line 30...
30
 
30
 
31
struct intel_dvo_device {
31
struct intel_dvo_device {
32
	const char *name;
32
	const char *name;
33
	int type;
33
	int type;
34
	/* DVOA/B/C output register */
34
	/* DVOA/B/C output register */
-
 
35
	i915_reg_t dvo_reg;
35
	u32 dvo_reg;
36
	i915_reg_t dvo_srcdim_reg;
36
	/* GPIO register used for i2c bus to control this device */
37
	/* GPIO register used for i2c bus to control this device */
37
	u32 gpio;
38
	u32 gpio;
Line 38... Line 39...
38
	int slave_addr;
39
	int slave_addr;
Line 126... Line 127...
126
	 * Debugging hook to dump device registers to log file
127
	 * Debugging hook to dump device registers to log file
127
	 */
128
	 */
128
	void (*dump_regs)(struct intel_dvo_device *dvo);
129
	void (*dump_regs)(struct intel_dvo_device *dvo);
129
};
130
};
Line 130... Line 131...
130
 
131
 
131
extern struct intel_dvo_dev_ops sil164_ops;
132
extern const struct intel_dvo_dev_ops sil164_ops;
132
extern struct intel_dvo_dev_ops ch7xxx_ops;
133
extern const struct intel_dvo_dev_ops ch7xxx_ops;
133
extern struct intel_dvo_dev_ops ivch_ops;
134
extern const struct intel_dvo_dev_ops ivch_ops;
134
extern struct intel_dvo_dev_ops tfp410_ops;
135
extern const struct intel_dvo_dev_ops tfp410_ops;
135
extern struct intel_dvo_dev_ops ch7017_ops;
136
extern const struct intel_dvo_dev_ops ch7017_ops;
Line 136... Line 137...
136
extern struct intel_dvo_dev_ops ns2501_ops;
137
extern const struct intel_dvo_dev_ops ns2501_ops;