Changeset 6a44ee4 in mainline for uspace/srv/hid/fb/fb.c


Ignore:
Timestamp:
2011-07-20T15:26:21Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
efcebe1
Parents:
25bef0ff (diff), a701812 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/fb/fb.c

    r25bef0ff r6a44ee4  
    5959#include <byteorder.h>
    6060#include <io/screenbuffer.h>
    61 
    6261#include "font-8x16.h"
    6362#include "fb.h"
    6463#include "main.h"
    6564#include "ppm.h"
    66 
    6765#include "pointer.xbm"
    6866#include "pointer_mask.xbm"
     67
     68// FIXME: remove this header
     69#include <kernel/ipc/ipc_methods.h>
    6970
    7071#define DEFAULT_BGCOLOR  0xf0f0f0
     
    15751576 *
    15761577 */
    1577 static void fb_client_connection(ipc_callid_t iid, ipc_call_t *icall)
     1578static void fb_client_connection(ipc_callid_t iid, ipc_call_t *icall,
     1579    void *arg)
    15781580{
    15791581        unsigned int vp = 0;
     
    16201622                        continue;
    16211623               
    1622                 switch (IPC_GET_IMETHOD(call)) {
    1623                 case IPC_M_PHONE_HUNGUP:
     1624                if (!IPC_GET_IMETHOD(call)) {
    16241625                        client_connected = false;
    16251626                       
     
    16301631                        /* Exit thread */
    16311632                        return;
     1633                }
    16321634               
     1635                switch (IPC_GET_IMETHOD(call)) {
    16331636                case FB_PUTCHAR:
    16341637                        ch = IPC_GET_ARG1(call);
Note: See TracChangeset for help on using the changeset viewer.