Changeset 3bacee1 in mainline for kernel/arch/ppc32/src/mm


Ignore:
Timestamp:
2018-04-12T16:27:17Z (8 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3cf22f9
Parents:
76d0981d
git-author:
Jiri Svoboda <jiri@…> (2018-04-11 19:25:33)
git-committer:
Jiri Svoboda <jiri@…> (2018-04-12 16:27:17)
Message:

Make ccheck-fix again and commit more good files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ppc32/src/mm/pht.c

    r76d0981d r3bacee1  
    109109        /* Find colliding PTE in PTEG */
    110110        for (i = 0; i < 8; i++) {
    111                 if ((phte[base + i].v)
    112                     && (phte[base + i].vsid == vsid)
    113                     && (phte[base + i].api == api)
    114                     && (phte[base + i].h == 0)) {
     111                if ((phte[base + i].v) &&
     112                    (phte[base + i].vsid == vsid) &&
     113                    (phte[base + i].api == api) &&
     114                    (phte[base + i].h == 0)) {
    115115                        found = true;
    116116                        break;
     
    134134                /* Find colliding PTE in PTEG */
    135135                for (i = 0; i < 8; i++) {
    136                         if ((phte[base2 + i].v)
    137                             && (phte[base2 + i].vsid == vsid)
    138                             && (phte[base2 + i].api == api)
    139                             && (phte[base2 + i].h == 1)) {
     136                        if ((phte[base2 + i].v) &&
     137                            (phte[base2 + i].vsid == vsid) &&
     138                            (phte[base2 + i].api == api) &&
     139                            (phte[base2 + i].h == 1)) {
    140140                                found = true;
    141141                                base = base2;
Note: See TracChangeset for help on using the changeset viewer.