Changeset 0cf1dcf in mainline for kernel/arch/sparc64/src


Ignore:
Timestamp:
2006-11-28T23:03:04Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
058b021
Parents:
d4b5542
Message:

Indentation and comment fixes.

Location:
kernel/arch/sparc64/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/src/mm/tsb.c

    rd4b5542 r0cf1dcf  
    9999        tsb->data.value = 0;
    100100        tsb->data.size = PAGESIZE_8K;
    101         tsb->data.pfn = t->frame >> PAGE_WIDTH;
     101        tsb->data.pfn = t->frame >> FRAME_WIDTH;
    102102        tsb->data.cp = t->c;
    103103#ifdef CONFIG_VIRT_IDX_CACHE
     
    141141        tsb->data.value = 0;
    142142        tsb->data.size = PAGESIZE_8K;
    143         tsb->data.pfn = t->frame >> PAGE_WIDTH;
     143        tsb->data.pfn = t->frame >> FRAME_WIDTH;
    144144        tsb->data.cp = t->c;
    145145#ifdef CONFIG_VIRT_IDX_CACHE
  • kernel/arch/sparc64/src/start.S

    rd4b5542 r0cf1dcf  
    6565kernel_image_start:
    6666        mov BSP_FLAG, %l0
    67         and %o0, %l0, %l7                               ! l7 <= bootstrap processor?
    68         andn %o0, %l0, %l6                              ! l6 <= start of physical memory
     67        and %o0, %l0, %l7                       ! l7 <= bootstrap processor?
     68        andn %o0, %l0, %l6                      ! l6 <= start of physical memory
    6969
    7070        ! Get bits 40:13 of physmem_base.
    7171        srlx %l6, 13, %l5
    7272        sllx %l5, 13 + (63 - 40), %l5
    73         srlx %l5, 63 - 40, %l5                          ! l5 <= physmem_base[40:13]
     73        srlx %l5, 63 - 40, %l5                  ! l5 <= physmem_base[40:13]
    7474       
    7575        /*
Note: See TracChangeset for help on using the changeset viewer.