#include #include "screen.h" WINDOW *screen_init(bool israw) { WINDOW *screen = initscr(); if (israw) raw(); noecho(); cbreak(); nodelay(screen, TRUE); keypad(stdscr, TRUE); refresh(); wrefresh(screen); return screen; } void screen_end(void) { endwin(); } tom feed' href='https://git.distanz.ch/cgit.cgi/linux/net-next.git/atom/drivers?h=nds-private-remove' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandeep Patil <sspatil@google.com>2016-08-15 14:20:54 -0700
committerGreg Kroah-Hartman <gregkh@google.com>2016-09-02 14:20:56 +0200
commit4de02894a28bfc0e3315fc364b3310aacd8cd48a (patch)
tree332c697ca85d412c0d045ad36e08a6a858dfeb9e /drivers
parent6fa4d3d5bbbd32dd7d70868c48abd7818134efa7 (diff)
greybus: es2: use a single bulk ep pair for all greybus data
This matches a corresponding firmware change to declare a single BULK EP pair for all greybus traffic and 1 BULK IN ep for ARPC. Thus, avoiding URB submittions for all the other unused BULK IN endpoints on the HOST side that took considerable amount of bus time. Testing Done: Tested with modified AP<->APB1 loopback test and also with GPBridge modules to ensure there are no regressions Signed-off-by: Sandeep Patil <sspatil@google.com> Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org> Reviewed-by: Johan Hovold <johan@hovoldconsulting.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers')