You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in drivers/soc/realtek/rtd129x/rtk_ve/ve3/ve3.c the line 64 u64 multicorebase[HXDEC_MAX_CORES] = {-1};
should be uint multicorebase[HXDEC_MAX_CORES] = {-1};
and line 985 pr_info("%s Init single core at 0x%16llx IRQ=%i\n", DEV_NAME, multicorebase[0], ve3_irq);
should be
pr_info("%s Init single core at 0x%16x IRQ=%i\n", DEV_NAME, multicorebase[0], ve3_irq);
to avoid errors and warnings.
Unfortunately, I do not know at the time if it breaks something, but I will try to check that.
Greetings,
Michael.
The text was updated successfully, but these errors were encountered:
Hello
in drivers/soc/realtek/rtd129x/rtk_ve/ve3/ve3.c the line 64
u64 multicorebase[HXDEC_MAX_CORES] = {-1};
should be
uint multicorebase[HXDEC_MAX_CORES] = {-1};
and line 985
pr_info("%s Init single core at 0x%16llx IRQ=%i\n", DEV_NAME, multicorebase[0], ve3_irq);
should be
pr_info("%s Init single core at 0x%16x IRQ=%i\n", DEV_NAME, multicorebase[0], ve3_irq);
to avoid errors and warnings.
Unfortunately, I do not know at the time if it breaks something, but I will try to check that.
Greetings,
Michael.
The text was updated successfully, but these errors were encountered: