pipe: Change the default of DEV_PIPE_MAXSIZE from 256/1024 to 65535

since both values have to typedef pipe_ndx_t to uint16_t,
it doesn't make sense to limit the size smaller than 65535

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2022-02-06 01:01:21 +08:00 committed by Petro Karashchenko
parent e545c440f4
commit 91c331f3fd

View File

@ -14,8 +14,7 @@ if PIPES
config DEV_PIPE_MAXSIZE
int "Maximum pipe/FIFO size"
default 1024 if !DEFAULT_SMALL
default 256 if DEFAULT_SMALL
default 65535
---help---
Maximum configurable size of a pipe or FIFO at runtime.