Create basic skeleton and copyright notices for hashfast driver.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
diff --git a/driver-hashfast.c b/driver-hashfast.c
index e69de29..6a0875c 100644
--- a/driver-hashfast.c
+++ b/driver-hashfast.c
@@ -0,0 +1,11 @@
+/*
+ * Copyright 2013 Con Kolivas <kernel@kolivas.org>
+ * Copyright 2013 Hashfast Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 3 of the License, or (at your option)
+ * any later version. See COPYING for more details.
+ */
+
+#include "config.h"
diff --git a/driver-hashfast.h b/driver-hashfast.h
index e69de29..5a20541 100644
--- a/driver-hashfast.h
+++ b/driver-hashfast.h
@@ -0,0 +1,16 @@
+/*
+ * Copyright 2013 Con Kolivas <kernel@kolivas.org>
+ * Copyright 2013 Hashfast
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 3 of the License, or (at your option)
+ * any later version. See COPYING for more details.
+ */
+
+#ifndef HASHFAST_H
+#define HASHFAST_H
+
+#ifdef USE_HASHFAST
+#endif /* USE_HASHFAST */
+#endif /* HASHFAST_H */