Signed-off-by: Vladislav Shchapov <vladislav@shchapov.ru>
`arch/s390/dfltcc_*` files. The functions can be grouped in three broad
categories:
-* Base DFLTCC support, e.g. wrapping the machine instruction -
- `dfltcc()` and allocating aligned memory - `dfltcc_alloc_state()`.
+* Base DFLTCC support, e.g. wrapping the machine instruction - `dfltcc()`.
* Translating between software and hardware data formats, e.g.
`dfltcc_deflate_set_dictionary()`.
* Translating between software and hardware state machines, e.g.
#define ALIGN_UP(p, size) (__typeof__(p))(((uintptr_t)(p) + ((size) - 1)) & ~((size) - 1))
-static inline void *dfltcc_alloc_state(PREFIX3(streamp) strm, uInt size, uInt extension_size) {
- return ZALLOC(strm, 1, ALIGN_UP(size, 8) + extension_size);
-}
-
static inline void dfltcc_reset_state(struct dfltcc_state *dfltcc_state) {
/* Initialize available functions */
if (is_dfltcc_enabled()) {