diff options
author | Adam Jackson <ajax@redhat.com> | 2012-04-09 17:49:36 -0400 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2012-04-17 09:31:33 -0400 |
commit | fc1a93bd9bad32581bca1e66fb7b3cabad9b3361 (patch) | |
tree | d02b9b98b98beeaf56852d787c4c24372892c410 /drivers/platform/x86 | |
parent | 4166fb64593514ad920b7dbd290e0a934b37d24a (diff) | |
download | blackbird-obmc-linux-fc1a93bd9bad32581bca1e66fb7b3cabad9b3361.tar.gz blackbird-obmc-linux-fc1a93bd9bad32581bca1e66fb7b3cabad9b3361.zip |
intel_ips: Hush the i915 symbols message
We can't control order here, and getting it inverted is harmless. So
turn this down to dev_info() and leave a note about how to fix it in
case userspace is insufficiently automagic.
Bugzilla: https://bugzilla.redhat.com/794953
Signed-off-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers/platform/x86')
-rw-r--r-- | drivers/platform/x86/intel_ips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/intel_ips.c b/drivers/platform/x86/intel_ips.c index f7ba316e0ed6..0ffdb3cde2bb 100644 --- a/drivers/platform/x86/intel_ips.c +++ b/drivers/platform/x86/intel_ips.c @@ -1565,7 +1565,7 @@ static int ips_probe(struct pci_dev *dev, const struct pci_device_id *id) ips->poll_turbo_status = true; if (!ips_get_i915_syms(ips)) { - dev_err(&dev->dev, "failed to get i915 symbols, graphics turbo disabled\n"); + dev_info(&dev->dev, "failed to get i915 symbols, graphics turbo disabled until i915 loads\n"); ips->gpu_turbo_enabled = false; } else { dev_dbg(&dev->dev, "graphics turbo enabled\n"); |