mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
hw/sh4: Coding style: Fix multi-line comments
Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Yoshinori Sato <ysato@users.sourceforge.jp> Message-Id: <3f192c699f4e5949ec0fcc436e5610f50afe2dbf.1635541329.git.balaton@eik.bme.hu> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
This commit is contained in:
parent
b3793b8a91
commit
221389657a
7 changed files with 284 additions and 276 deletions
|
@ -450,8 +450,7 @@ int sh_intc_init(MemoryRegion *sysmem,
|
|||
desc->nr_mask_regs = nr_mask_regs;
|
||||
desc->prio_regs = prio_regs;
|
||||
desc->nr_prio_regs = nr_prio_regs;
|
||||
/* Allocate 4 MemoryRegions per register (2 actions * 2 aliases).
|
||||
**/
|
||||
/* Allocate 4 MemoryRegions per register (2 actions * 2 aliases) */
|
||||
desc->iomem_aliases = g_new0(MemoryRegion,
|
||||
(nr_mask_regs + nr_prio_regs) * 4);
|
||||
|
||||
|
@ -498,8 +497,10 @@ int sh_intc_init(MemoryRegion *sysmem,
|
|||
return 0;
|
||||
}
|
||||
|
||||
/* Assert level <n> IRL interrupt.
|
||||
0:deassert. 1:lowest priority,... 15:highest priority. */
|
||||
/*
|
||||
* Assert level <n> IRL interrupt.
|
||||
* 0:deassert. 1:lowest priority,... 15:highest priority
|
||||
*/
|
||||
void sh_intc_set_irl(void *opaque, int n, int level)
|
||||
{
|
||||
struct intc_source *s = opaque;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue