mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
target/riscv: rename ext_icbom to ext_zicbom
Add a leading 'z' to improve grepping. When one wants to search for uses of zicbom they're more likely to do 'grep -i zicbom' than 'grep -i icbom'. Suggested-by: Andrew Jones <ajones@ventanamicro.com> Signed-off-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Andrew Jones <ajones@ventanamicro.com> Message-ID: <20231012164604.398496-4-dbarboza@ventanamicro.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
960b389b7d
commit
a326a2b0b2
5 changed files with 12 additions and 12 deletions
|
@ -16,10 +16,10 @@
|
|||
* this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#define REQUIRE_ZICBOM(ctx) do { \
|
||||
if (!ctx->cfg_ptr->ext_icbom) { \
|
||||
return false; \
|
||||
} \
|
||||
#define REQUIRE_ZICBOM(ctx) do { \
|
||||
if (!ctx->cfg_ptr->ext_zicbom) { \
|
||||
return false; \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
#define REQUIRE_ZICBOZ(ctx) do { \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue