blob: 867086c09cfe476ef48c461197bb4434f0f2df13 [file] [log] [blame]
/** @file
CPU disable interrupt function for RISC-V
Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "BaseLibInternals.h"
extern VOID RiscVDisableSupervisorModeInterrupts (VOID);
/**
Disables CPU interrupts.
**/
VOID
EFIAPI
DisableInterrupts (
VOID
)
{
RiscVDisableSupervisorModeInterrupts ();
}