Skip to content

Add comment for function in QemuVideoDxe #11008

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
20 changes: 10 additions & 10 deletions OvmfPkg/QemuVideoDxe/Driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -629,13 +629,13 @@ QemuVideoControllerDriverStop (
}

/**
TODO: Add function description
Write an 8-bit value to a specified I/O port via PCI I/O pass-through.

@param Private TODO: add argument description
@param Address TODO: add argument description
@param Data TODO: add argument description
@param Private QEMU private data structure
@param Address The I/O port offset within the pass-through BAR to write to.
@param Data The 8-bit value to write to the specified port

TODO: add return values
@retval None

**/
VOID
Expand All @@ -656,13 +656,13 @@ outb (
}

/**
TODO: Add function description
Write a 16-bit value to a specified I/O port via PCI I/O pass-through.

@param Private TODO: add argument description
@param Address TODO: add argument description
@param Data TODO: add argument description
@param Private QEMU private data structure
@param Address The I/O port offset within the pass-through BAR to write to.
@param Data The 16-bit value to write to the specified port.

TODO: add return values
@retval None

**/
VOID
Expand Down
Loading