summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/KernelKit/PCI/Database.h
diff options
context:
space:
mode:
Diffstat (limited to 'dev/kernel/KernelKit/PCI/Database.h')
-rw-r--r--dev/kernel/KernelKit/PCI/Database.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/dev/kernel/KernelKit/PCI/Database.h b/dev/kernel/KernelKit/PCI/Database.h
index cb12a731..82084bb1 100644
--- a/dev/kernel/KernelKit/PCI/Database.h
+++ b/dev/kernel/KernelKit/PCI/Database.h
@@ -8,7 +8,7 @@
#include <KernelKit/PCI/Device.h>
#include <NewKit/Defines.h>
-namespace NeOS
+namespace Kernel
{
namespace Types
{
@@ -35,24 +35,24 @@ namespace NeOS
Invalid = Unassgined,
};
} // namespace Types
-} // namespace NeOS
+} // namespace Kernel
-inline BOOL operator!=(const NeOS::Types::PciDeviceKind& lhs, NeOS::UChar rhs)
+inline BOOL operator!=(const Kernel::Types::PciDeviceKind& lhs, Kernel::UChar rhs)
{
- return rhs != (NeOS::UChar)lhs;
+ return rhs != (Kernel::UChar)lhs;
}
-inline BOOL operator==(const NeOS::Types::PciDeviceKind& lhs, NeOS::UChar rhs)
+inline BOOL operator==(const Kernel::Types::PciDeviceKind& lhs, Kernel::UChar rhs)
{
- return rhs == (NeOS::UChar)lhs;
+ return rhs == (Kernel::UChar)lhs;
}
-inline BOOL operator!=(NeOS::UChar lhs, const NeOS::Types::PciDeviceKind& rhs)
+inline BOOL operator!=(Kernel::UChar lhs, const Kernel::Types::PciDeviceKind& rhs)
{
- return lhs != (NeOS::UChar)rhs;
+ return lhs != (Kernel::UChar)rhs;
}
-inline BOOL operator==(NeOS::UChar lhs, const NeOS::Types::PciDeviceKind& rhs)
+inline BOOL operator==(Kernel::UChar lhs, const Kernel::Types::PciDeviceKind& rhs)
{
- return lhs == (NeOS::UChar)rhs;
+ return lhs == (Kernel::UChar)rhs;
} \ No newline at end of file