pm: ignore notify() from unknown sender

. avoids annoying error message if e.g. buggy drivers
	  send pm notify()s that pm tries to reply() ENOSYS to
This commit is contained in:
Ben Gras 2012-06-14 15:36:38 +02:00
parent 769af57274
commit 5e38c802d8

View file

@ -96,7 +96,8 @@ int main()
result = SUSPEND; /* don't reply */
break;
default :
result = ENOSYS;
/* ignore notify() from unknown sender */
result = SUSPEND;
}
/* done, send reply and continue */