Skip to content
Snippets Groups Projects
Commit 29652e61 authored by Nadav Har'El's avatar Nadav Har'El
Browse files

Add unsupported_poll

Sorry, missing unsupported_poll broke compilation after the previous patch
parent ad26fb4b
No related branches found
No related tags found
No related merge requests found
......@@ -63,3 +63,8 @@ int unsupported_write(struct file *fp, struct uio *uio, int flags)
{
return EINVAL; /* as explained above, doesn't matter what we return */
}
int unsupported_poll(struct file *fp, int events)
{
return 0;
}
......@@ -13,6 +13,7 @@ fo_truncate_t unsupported_truncate;
fo_ioctl_t unsupported_ioctl;
fo_stat_t unsupported_stat;
fo_chmod_t unsupported_chmod;
fo_poll_t unsupported_poll;
__END_DECLS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment