[PATCH 1/9] target/riscv: drop unused include directive in time_helper.c

Luc Michel posted 9 patches 1 week ago
Maintainers: Palmer Dabbelt <palmer@dabbelt.com>, Alistair Francis <alistair.francis@wdc.com>, Weiwei Li <liwei1518@gmail.com>, Daniel Henrique Barboza <dbarboza@ventanamicro.com>, Liu Zhiwei <zhiwei_liu@linux.alibaba.com>
[PATCH 1/9] target/riscv: drop unused include directive in time_helper.c
Posted by Luc Michel 1 week ago
Drop the unused qemu/log.h include directive in time_helper.c

Signed-off-by: Luc Michel <luc.michel@amd.com>
---
 target/riscv/time_helper.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/target/riscv/time_helper.c b/target/riscv/time_helper.c
index 400e9173542..d2ec8a94166 100644
--- a/target/riscv/time_helper.c
+++ b/target/riscv/time_helper.c
@@ -15,11 +15,10 @@
  * You should have received a copy of the GNU General Public License along with
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "qemu/osdep.h"
-#include "qemu/log.h"
 #include "cpu_bits.h"
 #include "time_helper.h"
 #include "hw/intc/riscv_aclint.h"
 
 static void riscv_vstimer_cb(void *opaque)
-- 
2.51.0
Re: [PATCH 1/9] target/riscv: drop unused include directive in time_helper.c
Posted by Philippe Mathieu-Daudé 5 days, 1 hour ago
On 7/11/25 11:23, Luc Michel wrote:
> Drop the unused qemu/log.h include directive in time_helper.c
> 
> Signed-off-by: Luc Michel <luc.michel@amd.com>
> ---
>   target/riscv/time_helper.c | 1 -
>   1 file changed, 1 deletion(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>