Re: 2.6.14-rc1: oops during boot

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Wed, 2005-09-14 at 05:17 +0800, Antonino A. Daplas wrote:
> Grant Wilson wrote:
> > 2.6.14-rc1 oops on boot as a result of the patch "nvidiafb: Fallback to
> > firmware EDID".
> > 
> Thanks.  Try this patch.
> 
> Signed-off-by: Antonino Daplas <[email protected]>
> ---
> 
> diff --git a/drivers/video/nvidia/nv_i2c.c b/drivers/video/nvidia/nv_i2c.c
> --- a/drivers/video/nvidia/nv_i2c.c
> +++ b/drivers/video/nvidia/nv_i2c.c
> @@ -209,10 +209,13 @@ int nvidia_probe_i2c_connector(struct fb
>  
>  	if (!edid && conn == 1) {
>  		/* try to get from firmware */
> -		edid = kmalloc(EDID_LENGTH, GFP_KERNEL);
> -		if (edid)
> -			memcpy(edid, fb_firmware_edid(info->device),
> -			       EDID_LENGTH);
> +		const u8 *e = fb_firmware_edid(info->device);
> +		
> +		if (e != NULL) {
> +			edid = kmalloc(EDID_LENGTH, GFP_KERNEL);
> +			if (edid)
> +				memcpy(edid, e, EDID_LENGTH);
> +		}
>  	}
>  
>  	if (out_edid)

The patch works and the machine now boots and runs without problems -
thank you.

Grant
-- 
Running Linux 2.6.14-rc1 on x86_64

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]
  Powered by Linux