Skip to content

Commit

Permalink
Fixed build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-jonsson committed Nov 10, 2023
1 parent 78872a9 commit 15d8e21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/chipset/pcxt.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ static vxt_error ppi_config(void *dev, const char *section, const char *key, con

static struct vxt_pirepheral *ppi_create(vxt_allocator *alloc, void *frontend, const char *args) {
(void)args;

struct vxt_pirepheral *p = vxtu_ppi_create(alloc);
if (!p)
return NULL;
if (!p) return NULL;

if (frontend) {
struct frontend_interface *fi = (struct frontend_interface*)frontend;
Expand Down

0 comments on commit 15d8e21

Please sign in to comment.