mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:47:46 +00:00
Everywhere: Re-format with clang-format-11
Compared to version 10 this fixes a bunch of formatting issues, mostly around structs/classes with attributes like [[gnu::packed]], and incorrect insertion of spaces in parameter types ("T &"/"T &&"). I also removed a bunch of // clang-format off/on and FIXME comments that are no longer relevant - on the other hand it tried to destroy a couple of neatly formatted comments, so I had to add some as well.
This commit is contained in:
parent
2568a93b5d
commit
bbe787a0af
54 changed files with 130 additions and 230 deletions
|
@ -30,8 +30,7 @@
|
|||
#include <Kernel/VM/TypedMapping.h>
|
||||
|
||||
namespace Kernel {
|
||||
struct [[gnu::packed]] ioapic_mmio_regs
|
||||
{
|
||||
struct [[gnu::packed]] ioapic_mmio_regs {
|
||||
volatile u32 select;
|
||||
u32 reserved[3];
|
||||
volatile u32 window;
|
||||
|
|
|
@ -42,6 +42,7 @@ namespace Kernel {
|
|||
#define PIC1_CTL 0xA0
|
||||
#define PIC1_CMD 0xA1
|
||||
|
||||
// clang-format off
|
||||
#define ICW1_ICW4 0x01 /* ICW4 (not) needed */
|
||||
#define ICW1_SINGLE 0x02 /* Single (cascade) mode */
|
||||
#define ICW1_INTERVAL4 0x04 /* Call address interval 4 (8) */
|
||||
|
@ -53,6 +54,7 @@ namespace Kernel {
|
|||
#define ICW4_BUF_SLAVE 0x08 /* Buffered mode/slave */
|
||||
#define ICW4_BUF_MASTER 0x0C /* Buffered mode/master */
|
||||
#define ICW4_SFNM 0x10 /* Special fully nested (not) */
|
||||
// clang-format on
|
||||
|
||||
bool inline static is_all_masked(u16 reg)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue