linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] hw_random: provide more information when driver loads
@ 2005-02-03 21:29 James Nelson
  0 siblings, 0 replies; only message in thread
From: James Nelson @ 2005-02-03 21:29 UTC (permalink / raw)
  To: linux-kernel; +Cc: akpm, jgarzik, James Nelson

This patch makes the hw_random driver a little more informative when it is starting up -
currently, there is no easy way to tell if the driver detected any hardware.

The AMD driver does mention that it found the chip - this adds the same for the VIA
and Intel sections of the driver.

Tested with an i810-equipped system.

Signed-off-by: James Nelson <james4765@gmail.com>

diff -urpN -X /home/jim/kernel_sources/dontdiff-osdl linux-2.6.11-rc2-mm2-original/drivers/char/hw_random.c linux-2.6.11-rc2-mm2/drivers/char/hw_random.c
--- linux-2.6.11-rc2-mm2-original/drivers/char/hw_random.c	2005-01-29 19:02:41.000000000 -0500
+++ linux-2.6.11-rc2-mm2/drivers/char/hw_random.c	2005-02-02 19:53:50.000000000 -0500
@@ -248,6 +249,7 @@ static int __init intel_init (struct pci
 		goto err_out_free_map;
 	}
 
+	pr_info (PFX "Intel i810 RNG enabled\n");
 	DPRINTK ("EXIT, returning 0\n");
 	return 0;
 
@@ -451,6 +453,8 @@ static int __init via_init(struct pci_de
 		return -ENODEV;
 	}
 
+	pr_info(PFX "VIA C3 RNG enabled\n");
+
 	return 0;
 }
 
@@ -577,6 +581,8 @@ static int __init rng_init (void)
 
 	DPRINTK ("ENTER\n");
 
+	pr_info( RNG_DRIVER_NAME "\n");
+
 	/* Probe for Intel, AMD RNGs */
 	for_each_pci_dev(pdev) {
 		ent = pci_match_device (rng_pci_tbl, pdev);
@@ -595,6 +601,7 @@ static int __init rng_init (void)
 	}
 #endif
 
+	printk (KERN_ERR PFX "no supported hardware RNGs found\n");
 	DPRINTK ("EXIT, returning -ENODEV\n");
 	return -ENODEV;
 
@@ -603,8 +610,6 @@ match:
 	if (rc)
 		return rc;
 
-	pr_info( RNG_DRIVER_NAME " loaded\n");
-
 	DPRINTK ("EXIT, returning 0\n");
 	return 0;
 }

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-02-03 21:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-02-03 21:29 [PATCH] hw_random: provide more information when driver loads James Nelson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).