Changeset 5a513d4 in rtems


Ignore:
Timestamp:
01/18/05 05:25:48 (19 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
8dc9343
Parents:
7f1a915
Message:

2005-01-18 Ralf Corsepius <ralf.corsepius@…>

  • Makefile.am: Use ../../shared/tod.h instead of include/tod.h.
  • console/config.c: Remove typos from 2005-01-04 changes.
  • include/tod.h: Remove.
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  
     12005-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
    172005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
    28
  • c/src/lib/libbsp/powerpc/ppcn_60x/Makefile.am

    r7f1a915 r5a513d4  
    2323
    2424nodist_include_HEADERS += $(top_srcdir)/../../shared/include/coverhd.h
    25 include_HEADERS += include/tod.h
     25include_HEADERS += ../../shared/tod.h
    2626include_HEADERS += include/nvram.h include/pci.h
    2727
     
    9292noinst_PROGRAMS += network.rel
    9393network_rel_SOURCES = network/amd79c970.c network/amd79c970.h
    94 network_rel_CPPFLAGS = $(AM_CPPFLAGS) \
    95     $(network_CPPFLAGS)
     94network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
    9695network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
    9796endif
     
    135134PREINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h
    136135
    137 $(PROJECT_INCLUDE)/tod.h: include/tod.h $(PROJECT_INCLUDE)/$(dirstamp)
     136$(PROJECT_INCLUDE)/tod.h: ../../shared/tod.h $(PROJECT_INCLUDE)/$(dirstamp)
    138137        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/tod.h
    139138PREINSTALL_FILES += $(PROJECT_INCLUDE)/tod.h
  • c/src/lib/libbsp/powerpc/ppcn_60x/console/config.c

    r7f1a915 r5a513d4  
    438438         */
    439439
    440         ulTemp = (uint32_t)Console_Port_Tbl[minor].pDeviceParams
     440        ulTemp = (uint32_t)Console_Port_Tbl[minor].pDeviceParams;
    441441#if 1
    442442        /*
     
    456456         * apply a div 4 here rather than in hardware (using MCR bit 7).
    457457         */
    458         ultemp /= 4;
     458        ulTemp /= 4;
    459459
    460460        Console_Port_Tbl[minor].pDeviceParams = (void *)ulTemp;
Note: See TracChangeset for help on using the changeset viewer.