Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VE3 drivers - need for change #12

Open
michal5520pl opened this issue Nov 29, 2020 · 0 comments
Open

VE3 drivers - need for change #12

michal5520pl opened this issue Nov 29, 2020 · 0 comments

Comments

@michal5520pl
Copy link

michal5520pl commented Nov 29, 2020

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant