blob: 09e04016291232477fc2d4d38ff8a75ec48b0dc9 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/**
2 * Copyright (C) ARM Limited 2013-2014. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#include "Driver.h"
10
11Driver *Driver::head = NULL;
12
13Driver::Driver() : next(head) {
14 head = this;
15}