mbox series

[0/7] xen/arm: use unsigned int instead of plain unsigned

Message ID 20220627131543.410971-1-michal.orzel@arm.com (mailing list archive)
Headers show
Series xen/arm: use unsigned int instead of plain unsigned | expand

Message

Michal Orzel June 27, 2022, 1:15 p.m. UTC
This is done purely for cosmetic/style reasons (as we tend to use unsigned int
more often than just unsigned) and not to waste changes made as part of [1]
series that contained invalid justification (this is not fixing MISRA 8.1 rule).

Most of these patches have already been reviewed/acked but because of changing
the commit messages/titles the tags are dropped now.

[1] https://lore.kernel.org/all/e6c10adc-27a8-2f31-7d84-6aee916c56bf@suse.com/t/


Michal Orzel (7):
  xen/arm: Use unsigned int instead of plain unsigned
  xen/domain: Use unsigned int instead of plain unsigned
  xen/common: Use unsigned int instead of plain unsigned
  include/xen: Use unsigned int instead of plain unsigned
  include/public: Use uint32_t instead of unsigned (int)
  xsm/flask: Use unsigned int instead of plain unsigned
  drivers/acpi: Drop the unneeded casts to unsigned

 xen/arch/arm/domain_build.c             |  2 +-
 xen/arch/arm/guestcopy.c                | 13 +++++++------
 xen/arch/arm/include/asm/arm32/bitops.h |  8 ++++----
 xen/arch/arm/include/asm/fixmap.h       |  4 ++--
 xen/arch/arm/include/asm/guest_access.h |  8 ++++----
 xen/arch/arm/include/asm/mm.h           |  2 +-
 xen/arch/arm/irq.c                      |  2 +-
 xen/arch/arm/kernel.c                   |  2 +-
 xen/arch/arm/mm.c                       |  4 ++--
 xen/common/domain.c                     |  2 +-
 xen/common/grant_table.c                |  6 +++---
 xen/common/gunzip.c                     |  8 ++++----
 xen/common/sched/cpupool.c              |  4 ++--
 xen/common/trace.c                      |  2 +-
 xen/drivers/acpi/tables/tbfadt.c        |  6 +++---
 xen/drivers/acpi/tables/tbutils.c       |  1 -
 xen/include/public/physdev.h            |  4 ++--
 xen/include/public/sysctl.h             | 10 +++++-----
 xen/include/xen/domain.h                |  2 +-
 xen/include/xen/perfc.h                 |  2 +-
 xen/include/xen/sched.h                 |  2 +-
 xen/xsm/flask/ss/avtab.c                |  2 +-
 22 files changed, 48 insertions(+), 48 deletions(-)