summaryrefslogtreecommitdiffstats
path: root/bsps/shared/dev/serial/getserialmouseps2.c
blob: 375e383fac5e51452fb58a382ac1c336a76ec6a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright (c) 2013 embedded brains GmbH.  All rights reserved.
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#include <rtems/serial_mouse.h>

bool bsp_get_serial_mouse_device(
  const char **name,
  const char **type
)
{
  *name = SERIAL_MOUSE_DEVICE_PS2;
  *type = "ps2";

  return true;
}