Files
kernel_arpi/arch/ia64/include/asm
Alexander Lobakin ae6620a397 ia64, processor: fix -Wincompatible-pointer-types in ia64_get_irr()
commit e5a16a5c4602c119262f350274021f90465f479d upstream.

test_bit(), as any other bitmap op, takes `unsigned long *` as a
second argument (pointer to the actual bitmap), as any bitmap
itself is an array of unsigned longs. However, the ia64_get_irr()
code passes a ref to `u64` as a second argument.
This works with the ia64 bitops implementation due to that they
have `void *` as the second argument and then cast it later on.
This works with the bitmap API itself due to that `unsigned long`
has the same size on ia64 as `u64` (`unsigned long long`), but
from the compiler PoV those two are different.
Define @irr as `unsigned long` to fix that. That implies no
functional changes. Has been hidden for 16 years!

Fixes: a58786917c ("[IA64] avoid broken SAL_CACHE_FLUSH implementations")
Cc: stable@vger.kernel.org # 2.6.16+
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Alexander Lobakin <alexandr.lobakin@intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Yury Norov <yury.norov@gmail.com>
Signed-off-by: Yury Norov <yury.norov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2022-08-17 14:22:57 +02:00
..
2021-06-29 10:53:45 -07:00
2019-01-04 13:13:46 -08:00
2018-02-21 15:35:43 -08:00
2019-08-16 11:33:57 -07:00
2020-07-27 14:29:23 -04:00
2021-05-07 00:26:34 -07:00
2019-08-16 11:33:57 -07:00
2021-09-03 09:58:09 -07:00
2019-08-16 14:32:26 -07:00
2018-11-26 18:30:40 -08:00
2019-08-16 11:33:57 -07:00
2021-07-01 11:06:03 -07:00
2020-09-11 09:34:32 -07:00
2021-05-07 00:26:34 -07:00
2019-01-25 17:22:20 +01:00