2015-09-14 20:09:22 +00:00
|
|
|
--- a/src/Makefile.in
|
|
|
|
+++ b/src/Makefile.in
|
2016-08-26 22:07:03 +00:00
|
|
|
@@ -117,7 +117,7 @@ POST_UNINSTALL = :
|
2013-03-14 18:43:18 +00:00
|
|
|
|
|
|
|
# the headerfile of linux kernels 2.6.x contain to much arithmetic
|
|
|
|
# with void pointers (which is allowed for gcc!)
|
2015-09-14 20:09:22 +00:00
|
|
|
-@KERNEL_2_6_FALSE@am__append_6 = -Wpointer-arith
|
|
|
|
+@KERNEL_2_6_FALSE@am__append_6 =
|
2013-03-14 18:43:18 +00:00
|
|
|
subdir = src
|
2016-08-26 22:07:03 +00:00
|
|
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
|
|
am__aclocal_m4_deps = $(top_srcdir)/configure.in
|
2015-09-14 20:09:22 +00:00
|
|
|
--- a/src/common/drv_dsl_cpe_os_linux.c
|
|
|
|
+++ b/src/common/drv_dsl_cpe_os_linux.c
|
|
|
|
@@ -11,6 +11,7 @@
|
2013-03-14 18:43:18 +00:00
|
|
|
|
|
|
|
#define DSL_INTERN
|
|
|
|
|
|
|
|
+#include <linux/device.h>
|
|
|
|
#include "drv_dsl_cpe_api.h"
|
|
|
|
#include "drv_dsl_cpe_api_ioctl.h"
|
|
|
|
|
2016-08-26 22:07:03 +00:00
|
|
|
@@ -249,14 +250,7 @@ static DSL_long_t DSL_DRV_Ioctls(DSL_DRV
|
2013-03-14 18:43:18 +00:00
|
|
|
}
|
|
|
|
|
2015-09-14 20:09:22 +00:00
|
|
|
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36))
|
|
|
|
- if (pFile->f_dentry != DSL_NULL)
|
|
|
|
- {
|
|
|
|
- pINode = pFile->f_dentry->d_inode;
|
|
|
|
- }
|
|
|
|
- else
|
|
|
|
- {
|
|
|
|
- pINode = DSL_NULL;
|
|
|
|
- }
|
|
|
|
+ pINode = file_inode(pFile);
|
|
|
|
#endif
|
|
|
|
|
2015-11-24 20:41:07 +00:00
|
|
|
if (pINode == DSL_NULL)
|
2016-08-26 22:07:03 +00:00
|
|
|
@@ -1203,6 +1197,9 @@ static void DSL_DRV_NlSendMsg(DSL_char_t
|
2015-09-14 20:09:22 +00:00
|
|
|
}
|
2016-08-26 22:07:03 +00:00
|
|
|
#endif
|
2015-09-14 20:09:22 +00:00
|
|
|
|
|
|
|
+static struct class *dsl_class;
|
|
|
|
+static dev_t dsl_devt;
|
|
|
|
+
|
|
|
|
/* Entry point of driver */
|
2013-03-14 18:43:18 +00:00
|
|
|
int __init DSL_ModuleInit(void)
|
|
|
|
{
|
2016-08-26 22:07:03 +00:00
|
|
|
@@ -1241,6 +1238,10 @@ int __init DSL_ModuleInit(void)
|
2013-03-14 18:43:18 +00:00
|
|
|
|
|
|
|
DSL_DRV_DevNodeInit();
|
|
|
|
|
|
|
|
+ dsl_class = class_create(THIS_MODULE, "dsl_cpe_api0");
|
2015-09-14 20:09:22 +00:00
|
|
|
+ dsl_devt = MKDEV(DRV_DSL_CPE_API_DEV_MAJOR, 0);
|
|
|
|
+ device_create(dsl_class, NULL, dsl_devt, NULL, "dsl_cpe_api0");
|
2013-03-14 18:43:18 +00:00
|
|
|
+
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-08-26 22:07:03 +00:00
|
|
|
@@ -1248,6 +1249,11 @@ void __exit DSL_ModuleCleanup(void)
|
2015-09-14 20:09:22 +00:00
|
|
|
{
|
|
|
|
printk("Module will be unloaded"DSL_DRV_CRLF);
|
2013-03-14 18:43:18 +00:00
|
|
|
|
2015-09-14 20:09:22 +00:00
|
|
|
+ device_destroy(dsl_class, dsl_devt);
|
|
|
|
+ dsl_devt = NULL;
|
|
|
|
+ class_destroy(dsl_class);
|
|
|
|
+ dsl_class = NULL;
|
2013-03-14 18:43:18 +00:00
|
|
|
+
|
2015-09-14 20:09:22 +00:00
|
|
|
unregister_chrdev(nMajorNum, DRV_DSL_CPE_API_DEV_NAME);
|
2016-08-26 22:07:03 +00:00
|
|
|
|
2015-09-14 20:09:22 +00:00
|
|
|
DSL_DRV_Cleanup();
|
2016-08-26 22:07:03 +00:00
|
|
|
--- a/src/device/drv_dsl_cpe_device_vrx.c
|
|
|
|
+++ b/src/device/drv_dsl_cpe_device_vrx.c
|
|
|
|
@@ -5337,6 +5337,7 @@ DSL_Error_t DSL_DRV_DEV_HybridTypeGet(
|
|
|
|
#undef DSL_DBG_BLOCK
|
|
|
|
#define DSL_DBG_BLOCK DSL_DBG_NOTIFICATIONS
|
|
|
|
|
|
|
|
+#if 0
|
|
|
|
DSL_Error_t DSL_DRV_DEV_MeiTcLayerSignaling
|
|
|
|
(
|
|
|
|
DSL_Context_t *pContext,
|
|
|
|
@@ -5384,6 +5385,15 @@ DSL_Error_t DSL_DRV_DEV_MeiTcLayerSignal
|
|
|
|
|
|
|
|
return nErrCode;
|
|
|
|
}
|
|
|
|
+#else
|
|
|
|
+DSL_Error_t DSL_DRV_DEV_MeiTcLayerSignaling
|
|
|
|
+(
|
|
|
|
+ DSL_Context_t *pContext,
|
|
|
|
+ DSL_TcLayerSelection_t nTcLayer)
|
|
|
|
+{
|
|
|
|
+ return DSL_SUCCESS;
|
|
|
|
+}
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
DSL_Error_t DSL_DRV_DEV_MeiShowtimeSignaling
|
|
|
|
(
|