fix comments

This commit is contained in:
Markus Fröschle
2015-11-21 07:39:49 +00:00
parent b1c7151282
commit 9958a95f27
2 changed files with 8 additions and 3 deletions

View File

@@ -80,7 +80,7 @@ $(1)/objs/%.o:$(SRCDIR)/%.S
$(1)_OBJS=$(patsubst %,$(1)/objs/%,$(OBJS))
$(1)/$(APP): $$($(1)_OBJS)
$(CC) $$(CFLAGS) -o $$@ $(TOPDIR)/../libcmini/$(1)/startup.o $$($(1)_OBJS) -L$(TOPDIR)/../libcmini/$(1) $(LIBS)
#$(STRIP) $$@
$(STRIP) $$@
endef
$(foreach DIR,$(TRGTDIRS),$(eval $(call CC_TEMPLATE,$(DIR))))

View File

@@ -27,7 +27,7 @@ void do_tests(struct pci_native_driver_interface *pci)
end = MCF_SLT0_SCNT;
time = (start - end) / (SYSCLK / 1000) / 1000;
printf("iterate over PCI devices\r\n");
printf("enumerate PCI devices\r\n");
int16_t handle;
int16_t index = 0;
@@ -103,7 +103,12 @@ void pci_test(void)
struct pci_native_driver_interface *pci_driver = NULL;
bas_drivers = get_bas_drivers();
if (bas_drivers != NULL && bas_drivers != -1L)
/*
* trap0_catcher should return 0L on failure, for some reason FireTOS
* returns -1L on a trap #0. Anyway, ...
*/
if (bas_drivers != NULL && bas_drivers != (void *) -1L)
{
printf("BaS driver vector: %p\r\n", bas_drivers);
printf("BaS version: %ld.%02ld\r\n", (long) bas_drivers->bas_version, (long) bas_drivers->bas_revision);