File tree Expand file tree Collapse file tree 3 files changed +13
-9
lines changed
Expand file tree Collapse file tree 3 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -266,7 +266,7 @@ linux()
266266 BUILD_PATH=" $BUILD_PATH /$BUILD_PATH_POSTFIX "
267267 if [ -d $BUILD_PATH ]
268268 then
269- echo " Build directory $BUILD_PATH already exists (aborting -> run make mrpropper to run a clean configure)"
269+ echo " Build directory $BUILD_PATH already exists (aborting -> run ' make mrproper' to run a clean configure)"
270270 exit -1
271271 else
272272 mkdir $BUILD_PATH
Original file line number Diff line number Diff line change @@ -482,6 +482,7 @@ remove(struct pci_dev *pci_device)
482482
483483static DEFINE_PCI_DEVICE_TABLE (id_table ) = {
484484 {PCI_DEVICE (0x10dc , 0x01a0 ) }, /* C-RORC PCI ID as registered at CERN */
485+ {PCI_DEVICE (0x10dc , 0xbeaf ) }, /* FLIB intermediate PCI ID */
485486 { 0 , }
486487};
487488
Original file line number Diff line number Diff line change @@ -139,15 +139,18 @@ DebugInit()
139139 debug_mask = atoi (environment_pda_debug );
140140 }
141141
142- fprintf (DEBUG_CHANNEL ,
143- ENV_WRN " : The PDA library has debug support "
142+ if (false)
143+ {
144+ fprintf (DEBUG_CHANNEL ,
145+ ENV_WRN " : The PDA library has debug support "
144146 "(current debug mask is %u).\n" , debug_mask );
145- fprintf (DEBUG_CHANNEL ,
146- ENV_WRN " : Please use the environment variable " ENV_VAR
147- " to change the debug mask!\n" );
148- fprintf (DEBUG_CHANNEL ,
149- ENV_WRN " : Please set " ENV_VAR " to the value %u to "
150- "get all debug output!\n" , PDADEBUG_ALL );
147+ fprintf (DEBUG_CHANNEL ,
148+ ENV_WRN " : Please use the environment variable " ENV_VAR
149+ " to change the debug mask!\n" );
150+ fprintf (DEBUG_CHANNEL ,
151+ ENV_WRN " : Please set " ENV_VAR " to the value %u to "
152+ "get all debug output!\n" , PDADEBUG_ALL );
153+ }
151154 }
152155}
153156
You can’t perform that action at this time.
0 commit comments