No longer needed. Signed-off-by: Rosen Penev <rosenp@gmail.com> Link: https://github.com/openwrt/openwrt/pull/22949 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
12 lines
367 B
Diff
12 lines
367 B
Diff
--- a/src/common/drv_dsl_cpe_os_linux.c
|
|
+++ b/src/common/drv_dsl_cpe_os_linux.c
|
|
@@ -414,7 +414,7 @@ int DSL_DRV_ErrorToOS(DSL_Error_t nError
|
|
DSL_void_t* DSL_DRV_VMalloc(
|
|
DSL_DRV_size_t nSize)
|
|
{
|
|
- return __vmalloc((unsigned long)nSize, GFP_KERNEL, PAGE_KERNEL);
|
|
+ return __vmalloc((unsigned long)nSize, GFP_KERNEL);
|
|
/* return vmalloc(nSize);*/
|
|
}
|
|
|