xfree86: bus: fix Enter/Leave accesses behaviour

Okay, seems we're not using extensively such hooks in fact. But fix the
expected behaviour at least.

Signed-off-by: Tiago Vignatti <tiago.vignatti@nokia.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
Tiago Vignatti 2010-05-02 20:14:40 +03:00
parent b37462b4da
commit 964f29bb80

View File

@ -390,8 +390,6 @@ xf86GetDevFromEntity(int entityIndex, int instance)
void void
xf86AccessEnter(void) xf86AccessEnter(void)
{ {
return;
/* /*
* on enter we simply disable routing of special resources * on enter we simply disable routing of special resources
* to any bus and let the RAC code to "open" the right bridges. * to any bus and let the RAC code to "open" the right bridges.
@ -412,7 +410,6 @@ xf86AccessEnter(void)
void void
xf86AccessLeave(void) xf86AccessLeave(void)
{ {
return;
EntityLeave(); EntityLeave();
} }