1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

some code cleanups

This commit is contained in:
Stefan Lankes 2016-08-07 22:21:24 +02:00
parent aeab719a2f
commit 60ee0af761

View file

@ -81,8 +81,8 @@ static size_t * const other[PAGE_LEVELS] = {
#endif
/** @brief Flush a specific page entry in TLB
* * @param addr The (virtual) address of the page to flush
* */
* @param addr The (virtual) address of the page to flush
*/
static inline void tlb_flush_one_page(size_t addr)
{
asm volatile("invlpg (%0)" : : "r"(addr) : "memory");