Changeset 0abc2ae in mainline for kernel/arch/ppc32/include


Ignore:
Timestamp:
2018-08-13T00:11:39Z (7 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f34d2be
Parents:
05882233
Message:

Remove single-argument version of smc_coherence.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ppc32/include/arch/barrier.h

    r05882233 r0abc2ae  
    6262 */
    6363
    64 NO_TRACE static inline void smc_coherence(void *addr)
    65 {
    66         asm volatile (
    67             "dcbst 0, %[addr]\n"
    68             "sync\n"
    69             "icbi 0, %[addr]\n"
    70             "sync\n"
    71             "isync\n"
    72             :: [addr] "r" (addr)
    73         );
    74 }
    75 
    76 NO_TRACE static inline void smc_coherence_block(void *addr, unsigned int len)
     64NO_TRACE static inline void smc_coherence(void *addr, unsigned int len)
    7765{
    7866        unsigned int i;
Note: See TracChangeset for help on using the changeset viewer.