diff options
author | Aristeu Rozanski <aris@ruivo.org> | 2007-09-11 18:23:32 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-09-11 20:21:19 -0400 |
commit | f9b5a5d193c3f0bc2a8331d95e0e74d76eb8ee2c (patch) | |
tree | 1061e56b24debbfd01c392e01ea1c0503f627b53 /drivers/edac/e752x_edac.c | |
parent | 3c8bb2cfa2d6b3dbf7a69641587152a60a96f03b (diff) |
drivers/edac: fix e752x correct return code
This patch changes the error code when dev0:fun1 was hidden by BIOS to one
more appropriate.
Signed-off-by: Aristeu Rozanski <aris@ruivo.org>
Signed-off-by: Mark Gross <mark.gross@intel.com>
Signed-off-by: Doug Thompson <dougthompson@xmission.com>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/edac/e752x_edac.c')
-rw-r--r-- | drivers/edac/e752x_edac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/e752x_edac.c b/drivers/edac/e752x_edac.c index 3bba224cb55d..6eb434749cd5 100644 --- a/drivers/edac/e752x_edac.c +++ b/drivers/edac/e752x_edac.c | |||
@@ -967,7 +967,7 @@ static int e752x_probe1(struct pci_dev *pdev, int dev_idx) | |||
967 | if (!force_function_unhide && !(stat8 & (1 << 5))) { | 967 | if (!force_function_unhide && !(stat8 & (1 << 5))) { |
968 | printk(KERN_INFO "Contact your BIOS vendor to see if the " | 968 | printk(KERN_INFO "Contact your BIOS vendor to see if the " |
969 | "E752x error registers can be safely un-hidden\n"); | 969 | "E752x error registers can be safely un-hidden\n"); |
970 | return -ENOMEM; | 970 | return -ENODEV; |
971 | } | 971 | } |
972 | stat8 |= (1 << 5); | 972 | stat8 |= (1 << 5); |
973 | pci_write_config_byte(pdev, E752X_DEVPRES1, stat8); | 973 | pci_write_config_byte(pdev, E752X_DEVPRES1, stat8); |