diff options
Diffstat (limited to 'linux-core')
| -rw-r--r-- | linux-core/drm_edid.c | 13 | ||||
| -rw-r--r-- | linux-core/intel_crt.c | 5 | ||||
| -rw-r--r-- | linux-core/intel_display.c | 4 | ||||
| -rw-r--r-- | linux-core/intel_drv.h | 5 | ||||
| -rw-r--r-- | linux-core/intel_i2c.c | 4 | ||||
| -rw-r--r-- | linux-core/intel_lvds.c | 4 | ||||
| -rw-r--r-- | linux-core/intel_modes.c | 6 | 
7 files changed, 33 insertions, 8 deletions
| diff --git a/linux-core/drm_edid.c b/linux-core/drm_edid.c index 3c123751..7e254eee 100644 --- a/linux-core/drm_edid.c +++ b/linux-core/drm_edid.c @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2007 Intel Corporation + *   Jesse Barnes <jesse.barnes@intel.com> + */ +  #include <linux/i2c.h>  #include <linux/fb.h>  #include "drmP.h" @@ -73,7 +78,7 @@ struct detailed_data_monitor_range {  	u16 sec_gtf_toggle; /* A000=use above, 20=use below */  	u8 hfreq_start_khz; /* need to multiply by 2 */  	u8 c; /* need to divide by 2 */ -	u16 m; +	u16 m; /* FIXME: byte order */  	u8 k;  	u8 j; /* need to divide by 2 */  } __attribute__((packed)); @@ -126,9 +131,9 @@ struct detailed_timing {  struct edid {  	u8 header[8];  	/* Vendor & product info */ -	u16 mfg_id; -	u16 prod_code; -	u32 serial; +	u16 mfg_id; /* FIXME: byte order */ +	u16 prod_code; /* FIXME: byte order */ +	u32 serial; /* FIXME: byte order */  	u8 mfg_week;  	u8 mfg_year;  	/* EDID version */ diff --git a/linux-core/intel_crt.c b/linux-core/intel_crt.c index 5ff9f791..a251d986 100644 --- a/linux-core/intel_crt.c +++ b/linux-core/intel_crt.c @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2006-2007 Intel Corporation + *   Eric Anholt <eric@anholt.net> + */ +  #include <linux/i2c.h>  #include "drmP.h"  #include "drm.h" diff --git a/linux-core/intel_display.c b/linux-core/intel_display.c index 495f4704..67d7c7d5 100644 --- a/linux-core/intel_display.c +++ b/linux-core/intel_display.c @@ -1,3 +1,7 @@ +/* + * Copyright (c) 2006-2007 Intel Corporation + *   Eric Anholt <eric@anholt.net> + */  #include <linux/i2c.h>  #include "drmP.h"  #include "drm.h" diff --git a/linux-core/intel_drv.h b/linux-core/intel_drv.h index 5b8bef69..7b02d35f 100644 --- a/linux-core/intel_drv.h +++ b/linux-core/intel_drv.h @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2006 Dave Airlie <airlied@linux.ie> + * Copyright (c) 2007 Intel Corporation + *   Jesse Barnes <jesse.barnes@intel.com> + */  #ifndef __INTEL_DRV_H__  #define __INTEL_DRV_H__ diff --git a/linux-core/intel_i2c.c b/linux-core/intel_i2c.c index acae28a0..702e1376 100644 --- a/linux-core/intel_i2c.c +++ b/linux-core/intel_i2c.c @@ -1,6 +1,6 @@  /* - * Copyright 2006 Dave Airlie <airlied@linux.ie> - * Copyright © 2006 Intel Corporation + * Copyright (c) 2006 Dave Airlie <airlied@linux.ie> + * Copyright (c) 2006-2007 Intel Corporation   *   Eric Anholt <eric@anholt.net>   *   Jesse Barnes <jesse.barnes@intel.com>   */ diff --git a/linux-core/intel_lvds.c b/linux-core/intel_lvds.c index c2ac5679..a2ac13a0 100644 --- a/linux-core/intel_lvds.c +++ b/linux-core/intel_lvds.c @@ -1,6 +1,6 @@  /* - * Copyright 2006 Dave Airlie <airlied@linux.ie> - * Copyright © 2006 Intel Corporation + * Copyright (c) 2006 Dave Airlie <airlied@linux.ie> + * Copyright (c) 2006-2007 Intel Corporation   *   Eric Anholt <eric@anholt.net>   *   Jesse Barnes <jesse.barnes@intel.com>   */ diff --git a/linux-core/intel_modes.c b/linux-core/intel_modes.c index 0e56147d..601770e1 100644 --- a/linux-core/intel_modes.c +++ b/linux-core/intel_modes.c @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2007 Dave Airlie <airlied@linux.ie> + * Copyright (c) 2007 Intel Corporation + *   Jesse Barnes <jesse.barnes@intel.com> + */ +  #include <linux/i2c.h>  #include <linux/fb.h>  #include "drmP.h" | 
