Skip to content

Commit 4eff283

Browse files
author
Heiko Engel
committed
Merge branch 'cbm-fles-master'
2 parents e766697 + 73bb64e commit 4eff283

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

patches/linux_uio/uio_pci_dma.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,7 @@ remove(struct pci_dev *pci_device)
482482

483483
static 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

src/debug.c

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)