Changeset 5a513d4 in rtems
- Timestamp:
- 01/18/05 05:25:48 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 8dc9343
- Parents:
- 7f1a915
- Location:
- c/src/lib/libbsp/powerpc/ppcn_60x
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/ppcn_60x/ChangeLog
r7f1a915 r5a513d4 1 2005-01-18 Ralf Corsepius <ralf.corsepius@rtems.org> 2 3 * Makefile.am: Use ../../shared/tod.h instead of include/tod.h. 4 * console/config.c: Remove typos from 2005-01-04 changes. 5 * include/tod.h: Remove. 6 1 7 2005-01-07 Ralf Corsepius <ralf.corsepius@rtems.org> 2 8 -
c/src/lib/libbsp/powerpc/ppcn_60x/Makefile.am
r7f1a915 r5a513d4 23 23 24 24 nodist_include_HEADERS += $(top_srcdir)/../../shared/include/coverhd.h 25 include_HEADERS += include/tod.h25 include_HEADERS += ../../shared/tod.h 26 26 include_HEADERS += include/nvram.h include/pci.h 27 27 … … 92 92 noinst_PROGRAMS += network.rel 93 93 network_rel_SOURCES = network/amd79c970.c network/amd79c970.h 94 network_rel_CPPFLAGS = $(AM_CPPFLAGS) \ 95 $(network_CPPFLAGS) 94 network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS) 96 95 network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS) 97 96 endif … … 135 134 PREINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h 136 135 137 $(PROJECT_INCLUDE)/tod.h: include/tod.h $(PROJECT_INCLUDE)/$(dirstamp)136 $(PROJECT_INCLUDE)/tod.h: ../../shared/tod.h $(PROJECT_INCLUDE)/$(dirstamp) 138 137 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/tod.h 139 138 PREINSTALL_FILES += $(PROJECT_INCLUDE)/tod.h -
c/src/lib/libbsp/powerpc/ppcn_60x/console/config.c
r7f1a915 r5a513d4 438 438 */ 439 439 440 ulTemp = (uint32_t)Console_Port_Tbl[minor].pDeviceParams 440 ulTemp = (uint32_t)Console_Port_Tbl[minor].pDeviceParams; 441 441 #if 1 442 442 /* … … 456 456 * apply a div 4 here rather than in hardware (using MCR bit 7). 457 457 */ 458 ul temp /= 4;458 ulTemp /= 4; 459 459 460 460 Console_Port_Tbl[minor].pDeviceParams = (void *)ulTemp;
Note: See TracChangeset
for help on using the changeset viewer.