summaryrefslogtreecommitdiff
path: root/displayid.c
blob: ef6cb145ba1b6755c29316087c74bef8aa82c889 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "minitru-int.h"

static uint32_t displayid_probe(struct mt_monitor *mon)
{
    return 0;
}

static struct mt_mode *
displayid_modes(struct mt_monitor *mon)
{
    return NULL;
}

hidden struct mt_backend _mt_displayid_backend = {
    displayid_probe,
    displayid_modes,
};