mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
smem: Don't use -EPROBE_DEFER
This has no useful meaning in U-Boot. Use -ENOMEM since that appears to be what has gone wrong in this case. We want to reserve this flag for internal driver model use. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
fdcb93e170
commit
e96777b71e
1 changed files with 3 additions and 3 deletions
|
@ -437,7 +437,7 @@ static int qcom_smem_alloc(unsigned int host, unsigned int item, size_t size)
|
|||
int ret;
|
||||
|
||||
if (!__smem)
|
||||
return -EPROBE_DEFER;
|
||||
return -ENOMEM;
|
||||
|
||||
if (item < SMEM_ITEM_LAST_FIXED) {
|
||||
dev_err(__smem->dev,
|
||||
|
@ -559,7 +559,7 @@ static void *qcom_smem_get(unsigned int host, unsigned int item, size_t *size)
|
|||
{
|
||||
struct smem_partition_header *phdr;
|
||||
size_t cacheln;
|
||||
void *ptr = ERR_PTR(-EPROBE_DEFER);
|
||||
void *ptr = ERR_PTR(-ENOMEM);
|
||||
|
||||
if (!__smem)
|
||||
return ptr;
|
||||
|
@ -597,7 +597,7 @@ static int qcom_smem_get_free_space(unsigned int host)
|
|||
unsigned int ret;
|
||||
|
||||
if (!__smem)
|
||||
return -EPROBE_DEFER;
|
||||
return -ENOMEM;
|
||||
|
||||
if (host < SMEM_HOST_COUNT && __smem->partitions[host]) {
|
||||
phdr = __smem->partitions[host];
|
||||
|
|
Loading…
Reference in a new issue