From f899c59102b5bcb2c06953faaabc4ee3afb0d7ad Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Wed, 12 Oct 2005 19:53:20 +0000 Subject: [PATCH] * don't error in open if we can't find a timebase. Just let the caller know what's up (by returning 0 everywhere) and succeed. This commit was SVN r7734. --- opal/mca/timer/linux/timer_linux_component.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/opal/mca/timer/linux/timer_linux_component.c b/opal/mca/timer/linux/timer_linux_component.c index fe0ca83f04..fe191f1f95 100644 --- a/opal/mca/timer/linux/timer_linux_component.c +++ b/opal/mca/timer/linux/timer_linux_component.c @@ -126,9 +126,5 @@ opal_timer_linux_open(void) fclose(fp); - if (0 == opal_timer_linux_freq) { - return OPAL_ERR_NOT_FOUND; - } - return OPAL_SUCCESS; }