Follow up EDKT247-253

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1449 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
yshang1
2006-09-05 05:41:32 +00:00
parent a1c90cf694
commit 97fc032b57
6 changed files with 27 additions and 16 deletions

View File

@ -50,6 +50,9 @@ SerialPortWrite (
IN UINTN NumberOfBytes
)
{
ASSERT (NULL != Buffer);
ASSERT (0 != NumberOfBytes);
return 0;
}
@ -74,6 +77,9 @@ SerialPortRead (
IN UINTN NumberOfBytes
)
{
ASSERT (NULL != Buffer);
ASSERT (0 != NumberOfBytes);
return 0;
}