@@ -211,21 +211,6 @@ void *mod_balloc_align(struct processing_module *mod, size_t size, size_t alignm
211211}
212212EXPORT_SYMBOL (mod_balloc_align );
213213
214- /**
215- * Allocates buffer memory block for module.
216- * @param mod Pointer to module this memory block is allocated for.
217- * @param bytes Size in bytes.
218- * @return Pointer to the allocated memory or NULL if failed.
219- *
220- * Like mod_balloc_align() but the alignment can not be specified. However,
221- * rballoc() always aligns the memory to PLATFORM_DCACHE_ALIGN.
222- */
223- void * mod_balloc (struct processing_module * mod , size_t size )
224- {
225- return mod_balloc_align (mod , size , 0 );
226- }
227- EXPORT_SYMBOL (mod_balloc );
228-
229214/**
230215 * Allocates aligned memory block for module.
231216 * @param mod Pointer to the module this memory block is allocatd for.
@@ -276,20 +261,6 @@ void *mod_alloc_align(struct processing_module *mod, size_t size, size_t alignme
276261}
277262EXPORT_SYMBOL (mod_alloc_align );
278263
279- /**
280- * Allocates memory block for module.
281- * @param mod Pointer to module this memory block is allocated for.
282- * @param bytes Size in bytes.
283- * @return Pointer to the allocated memory or NULL if failed.
284- *
285- * Like mod_alloc_align() but the alignment can not be specified.
286- */
287- void * mod_alloc (struct processing_module * mod , size_t size )
288- {
289- return mod_alloc_align (mod , size , 0 );
290- }
291- EXPORT_SYMBOL (mod_alloc );
292-
293264/**
294265 * Allocates memory block for module and initializes it to zero.
295266 * @param mod Pointer to module this memory block is allocated for.
0 commit comments