Changeset 1affcdf3 in mainline for uspace/srv/hid/fb/fb.c


Ignore:
Timestamp:
2011-06-10T19:33:41Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1878386
Parents:
13ecdac9 (diff), 79a141a (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

    r13ecdac9 r1affcdf3  
    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
     
    16201621                        continue;
    16211622               
    1622                 switch (IPC_GET_IMETHOD(call)) {
    1623                 case IPC_M_PHONE_HUNGUP:
     1623                if (!IPC_GET_IMETHOD(call)) {
    16241624                        client_connected = false;
    16251625                       
     
    16301630                        /* Exit thread */
    16311631                        return;
     1632                }
    16321633               
     1634                switch (IPC_GET_IMETHOD(call)) {
    16331635                case FB_PUTCHAR:
    16341636                        ch = IPC_GET_ARG1(call);
Note: See TracChangeset for help on using the changeset viewer.