Ignore:
Timestamp:
2014-09-12T03:45:25Z (11 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c53b58e
Parents:
3eb0c85 (diff), 105d8d6 (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

most usb changes were reverted. blink and usbmass were fixed
known problems:
ehci won't initialize
usbmast asserts on unmount (happens on mainline too)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/arch/mips32/include/libarch/fibril.h

    r3eb0c85 r8e7c9fe  
    3838
    3939#include <sys/types.h>
     40#include <libarch/fibril_context.h>
    4041#include <libarch/stack.h>
    4142#include <align.h>
     
    5657        } while (0)
    5758
    58 typedef struct  {
    59         uint32_t sp;
    60         uint32_t pc;
    61        
    62         uint32_t s0;
    63         uint32_t s1;
    64         uint32_t s2;
    65         uint32_t s3;
    66         uint32_t s4;
    67         uint32_t s5;
    68         uint32_t s6;
    69         uint32_t s7;
    70         uint32_t s8;
    71         uint32_t gp;
    72         uint32_t tls; /* Thread local storage(=k1) */
    73 
    74         uint32_t f20;
    75         uint32_t f21;
    76         uint32_t f22;
    77         uint32_t f23;
    78         uint32_t f24;
    79         uint32_t f25;
    80         uint32_t f26;
    81         uint32_t f27;
    82         uint32_t f28;
    83         uint32_t f29;
    84         uint32_t f30;
    85        
    86 } context_t;
    87 
    8859static inline uintptr_t context_get_fp(context_t *ctx)
    8960{
Note: See TracChangeset for help on using the changeset viewer.