mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-05 20:24:09 +08:00
MIPS: OCTEON: cvmx-bootmem: delete unused functions
Delete unused functions. Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi> Signed-off-by: Paul Burton <paul.burton@mips.com> Patchwork: https://patchwork.linux-mips.org/patch/21191/ Cc: Ralf Baechle <ralf@linux-mips.org> Cc: James Hogan <jhogan@kernel.org> Cc: linux-mips@linux-mips.org
This commit is contained in:
parent
5f35b33ac4
commit
3e431666a7
@ -155,11 +155,6 @@ void *cvmx_bootmem_alloc_address(uint64_t size, uint64_t address,
|
|||||||
address + size);
|
address + size);
|
||||||
}
|
}
|
||||||
|
|
||||||
void *cvmx_bootmem_alloc(uint64_t size, uint64_t alignment)
|
|
||||||
{
|
|
||||||
return cvmx_bootmem_alloc_range(size, alignment, 0, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
void *cvmx_bootmem_alloc_named_range_once(uint64_t size, uint64_t min_addr,
|
void *cvmx_bootmem_alloc_named_range_once(uint64_t size, uint64_t min_addr,
|
||||||
uint64_t max_addr, uint64_t align,
|
uint64_t max_addr, uint64_t align,
|
||||||
char *name,
|
char *name,
|
||||||
@ -210,13 +205,6 @@ void *cvmx_bootmem_alloc_named_range(uint64_t size, uint64_t min_addr,
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
void *cvmx_bootmem_alloc_named_address(uint64_t size, uint64_t address,
|
|
||||||
char *name)
|
|
||||||
{
|
|
||||||
return cvmx_bootmem_alloc_named_range(size, address, address + size,
|
|
||||||
0, name);
|
|
||||||
}
|
|
||||||
|
|
||||||
void *cvmx_bootmem_alloc_named(uint64_t size, uint64_t alignment, char *name)
|
void *cvmx_bootmem_alloc_named(uint64_t size, uint64_t alignment, char *name)
|
||||||
{
|
{
|
||||||
return cvmx_bootmem_alloc_named_range(size, 0, 0, alignment, name);
|
return cvmx_bootmem_alloc_named_range(size, 0, 0, alignment, name);
|
||||||
|
@ -145,18 +145,6 @@ struct cvmx_bootmem_desc {
|
|||||||
*/
|
*/
|
||||||
extern int cvmx_bootmem_init(void *mem_desc_ptr);
|
extern int cvmx_bootmem_init(void *mem_desc_ptr);
|
||||||
|
|
||||||
/**
|
|
||||||
* Allocate a block of memory from the free list that was passed
|
|
||||||
* to the application by the bootloader.
|
|
||||||
* This is an allocate-only algorithm, so freeing memory is not possible.
|
|
||||||
*
|
|
||||||
* @size: Size in bytes of block to allocate
|
|
||||||
* @alignment: Alignment required - must be power of 2
|
|
||||||
*
|
|
||||||
* Returns pointer to block of memory, NULL on error
|
|
||||||
*/
|
|
||||||
extern void *cvmx_bootmem_alloc(uint64_t size, uint64_t alignment);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Allocate a block of memory from the free list that was
|
* Allocate a block of memory from the free list that was
|
||||||
* passed to the application by the bootloader at a specific
|
* passed to the application by the bootloader at a specific
|
||||||
@ -198,27 +186,6 @@ extern void *cvmx_bootmem_alloc_address(uint64_t size, uint64_t address,
|
|||||||
extern void *cvmx_bootmem_alloc_named(uint64_t size, uint64_t alignment,
|
extern void *cvmx_bootmem_alloc_named(uint64_t size, uint64_t alignment,
|
||||||
char *name);
|
char *name);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Allocate a block of memory from the free list that was passed
|
|
||||||
* to the application by the bootloader, and assign it a name in the
|
|
||||||
* global named block table. (part of the cvmx_bootmem_descriptor_t structure)
|
|
||||||
* Named blocks can later be freed.
|
|
||||||
*
|
|
||||||
* @size: Size in bytes of block to allocate
|
|
||||||
* @address: Physical address to allocate memory at. If this
|
|
||||||
* memory is not available, the allocation fails.
|
|
||||||
* @name: name of block - must be less than CVMX_BOOTMEM_NAME_LEN
|
|
||||||
* bytes
|
|
||||||
*
|
|
||||||
* Returns a pointer to block of memory, NULL on error
|
|
||||||
*/
|
|
||||||
extern void *cvmx_bootmem_alloc_named_address(uint64_t size, uint64_t address,
|
|
||||||
char *name);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Allocate a block of memory from a specific range of the free list
|
* Allocate a block of memory from a specific range of the free list
|
||||||
* that was passed to the application by the bootloader, and assign it
|
* that was passed to the application by the bootloader, and assign it
|
||||||
|
Loading…
Reference in New Issue
Block a user