Index: /branches/rel10_ifa/psModules/src/astrom/pmHDU.c
===================================================================
--- /branches/rel10_ifa/psModules/src/astrom/pmHDU.c	(revision 6518)
+++ /branches/rel10_ifa/psModules/src/astrom/pmHDU.c	(revision 6519)
@@ -117,11 +117,5 @@
                    )
 {
-    pmHDU *hdu = fpa->hdu;              // The HDU information
-    if (!hdu) {
-        psError(PS_ERR_IO, true, "Unable to find HDU in chip.\n");
-        return NULL;
-    }
-
-    return hdu;
+    return fpa->hdu;
 }
 
@@ -131,10 +125,5 @@
     pmHDU *hdu = chip->hdu;             // The HDU information
     if (!hdu) {
-        // Grab HDU info from the FPA
-        hdu = pmHDUFromFPA(chip->parent);
-        if (!hdu) {
-            psError(PS_ERR_IO, true, "Unable to find HDU in chip.\n");
-            return NULL;
-        }
+        hdu = pmHDUFromFPA(chip->parent); // Grab HDU info from the FPA
     }
 
@@ -147,10 +136,5 @@
     pmHDU *hdu = cell->hdu;             // The HDU information
     if (!hdu) {
-        // Grab HDU info from the chip
-        hdu = pmHDUFromChip(cell->parent);
-        if (!hdu) {
-            psError(PS_ERR_IO, true, "Unable to find HDU in cell.\n");
-            return NULL;
-        }
+        hdu = pmHDUFromChip(cell->parent); // Grab HDU info from the chip
     }
 
