aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Farrugia <mark.farrugia@fiberdyne.com.au>2018-10-25 16:13:19 +1100
committerMark Farrugia <mark.farrugia@fiberdyne.com.au>2018-10-26 17:27:49 +1100
commitd8ff159e37cb3768358b350b2dc80118d81d4b2c (patch)
treec3624fa86c28abf669447bb5d1f02bd9f19cf3ca
parente734ca6ed2bb99343fd32c369a7eb3679447b115 (diff)
Refactor core_internal.h to core.h
Signed-off-by: Mark Farrugia <mark.farrugia@fiberdyne.com.au>
-rw-r--r--alsa-pcm.c2
-rw-r--r--configfs.c4
-rw-r--r--core.c2
-rw-r--r--core.h (renamed from core_internal.h)2
4 files changed, 5 insertions, 5 deletions
diff --git a/alsa-pcm.c b/alsa-pcm.c
index f174ef0..4d7b549 100644
--- a/alsa-pcm.c
+++ b/alsa-pcm.c
@@ -7,7 +7,7 @@
* alsa-pcm.c - AVIRT PCM interface
*/
-#include "core_internal.h"
+#include "core.h"
#define D_LOGNAME "pcm"
diff --git a/configfs.c b/configfs.c
index 49eaa78..1a7e7c5 100644
--- a/configfs.c
+++ b/configfs.c
@@ -9,7 +9,7 @@
#include <linux/slab.h>
-#include "core_internal.h"
+#include "core.h"
#define D_LOGNAME "configfs"
@@ -105,7 +105,7 @@ static struct config_item_type cfg_avirt_stream_type = {
};
static struct config_item *
-cfg_avirt_stream_make_item(struct config_group *group, const char *name)
+ cfg_avirt_stream_make_item(struct config_group *group, const char *name)
{
char *split;
int direction;
diff --git a/core.c b/core.c
index 6509b55..08381e5 100644
--- a/core.c
+++ b/core.c
@@ -12,7 +12,7 @@
#include <linux/slab.h>
#include <sound/initval.h>
-#include "core_internal.h"
+#include "core.h"
MODULE_AUTHOR("James O'Shannessy <james.oshannessy@fiberdyne.com.au>");
MODULE_AUTHOR("Mark Farrugia <mark.farrugia@fiberdyne.com.au>");
diff --git a/core_internal.h b/core.h
index f3fcb48..ca47067 100644
--- a/core_internal.h
+++ b/core.h
@@ -4,7 +4,7 @@
*
* Copyright (c) 2010-2018 Fiberdyne Systems Pty Ltd
*
- * core_internal.h - AVIRT internal header
+ * core.h - AVIRT internal header
*/
#ifndef __SOUND_AVIRT_CORE_H