Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion drivers/xen/gnttab.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* SPDX-License-Identifier: MIT */

Check warning on line 1 in drivers/xen/gnttab.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

License may not be allowed

drivers/xen/gnttab.c:1 License file for 'MIT' not found in /LICENSES. Please check https://docs.zephyrproject.org/latest/contribute/guidelines.html#components-using-other-licenses.

Check warning on line 1 in drivers/xen/gnttab.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

Copyright missing

drivers/xen/gnttab.c:1 File has no SPDX-FileCopyrightText header, consider adding one.

Check warning on line 1 in drivers/xen/gnttab.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

License may not be allowed

drivers/xen/gnttab.c:1 License file for 'MIT' not found in /LICENSES. Please check https://docs.zephyrproject.org/latest/contribute/guidelines.html#components-using-other-licenses.

Check warning on line 1 in drivers/xen/gnttab.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

Copyright missing

drivers/xen/gnttab.c:1 File has no SPDX-FileCopyrightText header, consider adding one.
/*
****************************************************************************
* (C) 2006 - Cambridge University
Expand Down Expand Up @@ -196,7 +196,7 @@

void *gnttab_get_pages(unsigned int npages)
{
int ret;
int ret = 0;
void *page_addr;
unsigned int removed;
xen_pfn_t gfn;
Expand Down
Loading