]> rtime.felk.cvut.cz Git - lincan.git/commitdiff
Corrected print of address in report of card presence check failure.
authorppisa <ppisa>
Sun, 9 Nov 2008 00:06:57 +0000 (00:06 +0000)
committerppisa <ppisa>
Sun, 9 Nov 2008 00:06:57 +0000 (00:06 +0000)
lincan/src/tscan1.c

index dab858492daeec0f1e6acdc298b5bb5fb254704c..5f7ca7aa42d98e6b2573cac60ef747c1ff84bcb2 100644 (file)
@@ -284,7 +284,8 @@ int tscan1_init_hw_data(struct candevice_t *candev)
                remap_io_addr = io_addr + tsxxx_base;
 
                if(tscan1_check_presence(remap_io_addr, &jmp)){
-                       CANMSG("No TSCAN1 card found at address 0xlx\n");
+                       CANMSG("No TSCAN1 card found at address 0x%lx\n",
+                               remap_io_addr);
                        return -ENODEV;
                }
        } else {
@@ -371,7 +372,8 @@ int ts7kv_init_hw_data(struct candevice_t *candev)
                remap_io_addr = io_addr + tsxxx_base;
 
                if(ts7kv_check_presence(remap_io_addr, &jmp)){
-                       CANMSG("No TS7KV card found at address 0xlx\n");
+                       CANMSG("No TS7KV card found at address 0x%lx\n",
+                              remap_io_addr);
                        return -ENODEV;
                }
        } else {