summaryrefslogtreecommitdiffstats
blob: c262467dc219c18ec8c40a175de5530e7d8ff646 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * Copyright (C) ARM Limited 2013. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include "Driver.h"

Driver *Driver::head = NULL;

Driver::Driver() : next(head) {
	head = this;
}