Changeset bd55bbb in mainline for generic/src/ipc/sysipc.c


Ignore:
Timestamp:
2006-05-21T20:17:17Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
48c1ef9
Parents:
cf464d1
Message:

Fixed mips to compile with fb (missing hw_map).
Fixed mips hw virt/phys addresses of fb.
Moved fb_init to post_mm, because it needs malloc().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/ipc/sysipc.c

    rcf464d1 rbd55bbb  
    514514        /* Include phone address('id') of the caller in the request,
    515515         * copy whole call->data, not only call->data.args */
    516         STRUCT_TO_USPACE(calldata, &call->data);
     516        if (STRUCT_TO_USPACE(calldata, &call->data)) {
     517                return 0;
     518        }
    517519        return (__native)call;
    518520}
Note: See TracChangeset for help on using the changeset viewer.