Index: trunk/psModules/src/camera/pmHDUUtils.c
===================================================================
--- trunk/psModules/src/camera/pmHDUUtils.c	(revision 8815)
+++ trunk/psModules/src/camera/pmHDUUtils.c	(revision 9608)
@@ -9,6 +9,5 @@
 
 
-pmHDU *pmHDUFromFPA(const pmFPA *fpa    // FPA for which to find HDU
-                   )
+pmHDU *pmHDUFromFPA(const pmFPA *fpa)
 {
     PS_ASSERT_PTR_NON_NULL(fpa, NULL);
@@ -16,6 +15,5 @@
 }
 
-pmHDU *pmHDUFromChip(const pmChip *chip // Chip for which to find HDU
-                    )
+pmHDU *pmHDUFromChip(const pmChip *chip)
 {
     PS_ASSERT_PTR_NON_NULL(chip, NULL);
@@ -29,6 +27,5 @@
 }
 
-pmHDU *pmHDUFromCell(const pmCell *cell // Cell for which to find HDU
-                    )
+pmHDU *pmHDUFromCell(const pmCell *cell)
 {
     PS_ASSERT_PTR_NON_NULL(cell, NULL);
@@ -42,6 +39,5 @@
 }
 
-pmHDU *pmHDUFromReadout(const pmReadout *readout // Readout for which to find HDU
-                       )
+pmHDU *pmHDUFromReadout(const pmReadout *readout)
 {
     PS_ASSERT_PTR_NON_NULL(readout, NULL);
@@ -53,8 +49,5 @@
 
 // Get the lowest HDU
-pmHDU *pmHDUGetLowest(const pmFPA *fpa, // The FPA
-                      const pmChip *chip, // The chip, or NULL
-                      const pmCell *cell // The cell, or NULL
-                     )
+pmHDU *pmHDUGetLowest(const pmFPA *fpa, const pmChip *chip, const pmCell *cell)
 {
     pmHDU *hdu = NULL;          // The HDU that's at the lowest level
@@ -71,8 +64,5 @@
 
 // Get the highest HDU
-pmHDU *pmHDUGetHighest(const pmFPA *fpa, // The FPA
-                       const pmChip *chip, // The chip, or NULL
-                       const pmCell *cell // The cell, or NULL
-                      )
+pmHDU *pmHDUGetHighest(const pmFPA *fpa, const pmChip *chip, const pmCell *cell)
 {
     pmHDU *hdu = NULL;          // The HDU that's at the highest level
@@ -90,9 +80,5 @@
 }
 
-void pmHDUPrint(FILE *fd,               // File descriptor to which to print
-                const pmHDU *hdu,       // HDU to print
-                int level,              // Level at which to print
-                bool header             // Print header?
-               )
+void pmHDUPrint(FILE *fd, const pmHDU *hdu, int level, bool header)
 {
     PS_ASSERT_PTR_NON_NULL(hdu,);
