diff options
Diffstat (limited to 'modules/devices/riscv')
-rw-r--r-- | modules/devices/riscv/processor.c | 4 | ||||
-rw-r--r-- | modules/devices/riscv/riscv_data.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/devices/riscv/processor.c b/modules/devices/riscv/processor.c index afddf89d..f2e51c91 100644 --- a/modules/devices/riscv/processor.c +++ b/modules/devices/riscv/processor.c @@ -1,10 +1,10 @@ /* * HardInfo - Displays System Information - * Copyright (C) 2003-2006 Leandro A. F. Pereira <leandro@hardinfo.org> + * Copyright (C) 2003-2006 L. A. F. Pereira <l@tia.mat.br> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, version 2. + * the Free Software Foundation, version 2 or later. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/modules/devices/riscv/riscv_data.c b/modules/devices/riscv/riscv_data.c index 4ae68ef4..917e8e06 100644 --- a/modules/devices/riscv/riscv_data.c +++ b/modules/devices/riscv/riscv_data.c @@ -93,7 +93,7 @@ const char *riscv_ext_meaning(const char *ext) { /* see RISC-V spec 2.2: Chapter 22: ISA Subset Naming Conventions */ -/* Spec says case-insensitve, but I prefer single-letter extensions +/* Spec says case-insensitive, but I prefer single-letter extensions * capped and version string (like "2p1") with a lowercase p. */ #define RV_FIX_CASE(fstr,vo) \ p = fstr; while (*p != 0 && *p != ':') { if (!vo) *p = toupper(*p); p++; } \ |