Skip to content

Commit

Permalink
Ugly Fix for reset_get_bulk causes black screen on dreambox
Browse files Browse the repository at this point in the history
  • Loading branch information
Emanuel Strobel committed Apr 11, 2021
1 parent 03b3d70 commit 7c53707
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/reset/reset-uclass.c
Expand Up @@ -139,7 +139,8 @@ static int __reset_get_bulk(struct udevice *dev, ofnode node,

int reset_get_bulk(struct udevice *dev, struct reset_ctl_bulk *bulk)
{
return __reset_get_bulk(dev, dev_ofnode(dev), bulk);
//return __reset_get_bulk(dev, dev_ofnode(dev), bulk);
return -ENOMEM;
}

int reset_get_by_name(struct udevice *dev, const char *name,
Expand Down

0 comments on commit 7c53707

Please sign in to comment.