search for: ni_cp

Displaying 4 results from an estimated 4 matches for "ni_cp".

Did you mean: si_cp
2013 Mar 11
0
can't boot dom0 on Dell XPS 9100
...ed screenshots at http://skippyvondrake.com. Maybe it''s a hardware issue. The motherboard has Intel chipset x58 (if that helps). The first message of interest: hda_intel: azx_get_response timeout Followed by stuff like "failed command: READ FPDMA QUEUED" And near the end: ni_cp: Failed to load firmware "radeon/TURKS_pfp.bin" disabling GPU acceleration -Skippy
2017 Feb 28
2
[PATCH 0/2] gpu: drm: Use pr_cont and neaten logging
Joe Perches (2): drm: Use pr_cont where appropriate gpu: drm: Convert printk(KERN_<LEVEL> to pr_<level> drivers/gpu/drm/amd/amdgpu/amdgpu.h | 3 +- drivers/gpu/drm/amd/amdgpu/amdgpu_afmt.c | 4 +- drivers/gpu/drm/amd/amdgpu/amdgpu_atpx_handler.c | 4 +- drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 4 +-
2017 Feb 28
0
[PATCH 2/2] gpu: drm: Convert printk(KERN_<LEVEL> to pr_<level>
.../radeon/ni.c index a0d4a0522fdc..9eccd0c81d88 100644 --- a/drivers/gpu/drm/radeon/ni.c +++ b/drivers/gpu/drm/radeon/ni.c @@ -774,8 +774,7 @@ int ni_init_microcode(struct radeon_device *rdev) if (err) goto out; if (rdev->pfp_fw->size != pfp_req_size) { - printk(KERN_ERR - "ni_cp: Bogus length %zu in firmware \"%s\"\n", + pr_err("ni_cp: Bogus length %zu in firmware \"%s\"\n", rdev->pfp_fw->size, fw_name); err = -EINVAL; goto out; @@ -786,8 +785,7 @@ int ni_init_microcode(struct radeon_device *rdev) if (err) goto...
2017 Feb 28
8
[PATCH 2/2] gpu: drm: Convert printk(KERN_<LEVEL> to pr_<level>
...81d88 100644 > --- a/drivers/gpu/drm/radeon/ni.c > +++ b/drivers/gpu/drm/radeon/ni.c > @@ -774,8 +774,7 @@ int ni_init_microcode(struct radeon_device *rdev) > if (err) > goto out; > if (rdev->pfp_fw->size != pfp_req_size) { > - printk(KERN_ERR > - "ni_cp: Bogus length %zu in firmware \"%s\"\n", > + pr_err("ni_cp: Bogus length %zu in firmware \"%s\"\n", > rdev->pfp_fw->size, fw_name); > err = -EINVAL; > goto out; > @@ -786,8 +785,7 @@ int ni_init_microcode(struct radeon_device...