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 the function short_cleanup in the file short.c, I think it is an issue when
release the memory region: release_mem_region(short_base, SHORT_NR_PORTS).
Because the value short_base was updated in function short_init: short_base =
(unsigned long) ioremap(short_base, SHORT_NR_PORTS); So it should use base as
the input parameter: release_mem_region(base, SHORT_NR_PORTS)
Original issue reported on code.google.com by zouwa...@gmail.com on 1 Mar 2012 at 10:12
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
zouwa...@gmail.com
on 1 Mar 2012 at 10:12The text was updated successfully, but these errors were encountered: