summaryrefslogtreecommitdiffstats
path: root/drivers/watchdog
diff options
context:
space:
mode:
authorAhmad Fatoum <ahmad@a3f.at>2022-03-02 21:09:34 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2022-03-08 09:57:59 +0100
commit9d6cce28e006798655add3b799ec6adb55b5564c (patch)
tree3aa404594ef9995e0f3d575286bba5704844726b /drivers/watchdog
parentbdd69720eee1b91d7a335e5b53deb3fc255a7647 (diff)
downloadbarebox-9d6cce28e006798655add3b799ec6adb55b5564c.tar.gz
barebox-9d6cce28e006798655add3b799ec6adb55b5564c.tar.xz
watchdog: wdat: fix mixed spaces/tabs in alignment
Many struct members have a space followed by tabs for alignments. Drop the space. Signed-off-by: Ahmad Fatoum <ahmad@a3f.at> Link: https://lore.barebox.org/20220302200934.657994-1-ahmad@a3f.at Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r--drivers/watchdog/wdat_wdt.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/drivers/watchdog/wdat_wdt.c b/drivers/watchdog/wdat_wdt.c
index 39e8cc4a3d..f58aee1283 100644
--- a/drivers/watchdog/wdat_wdt.c
+++ b/drivers/watchdog/wdat_wdt.c
@@ -48,12 +48,12 @@ enum acpi_wdat_instructions {
/* WDAT Instruction Entries (actions) */
struct __packed acpi_wdat_entry {
- u8 action;
- u8 instruction;
- u16 reserved;
- struct acpi_generic_address register_region;
- u32 value; /* Value used with Read/Write register */
- u32 mask; /* Bitmask required for this register instruction */
+ u8 action;
+ u8 instruction;
+ u16 reserved;
+ struct acpi_generic_address register_region;
+ u32 value; /* Value used with Read/Write register */
+ u32 mask; /* Bitmask required for this register instruction */
};
/**
@@ -82,7 +82,7 @@ struct wdat_instruction {
struct wdat_wdt {
struct watchdog wdd;
unsigned int period;
- bool stopped_in_sleep;
+ bool stopped_in_sleep;
bool stopped;
struct list_head *instructions[MAX_WDAT_ACTIONS];
};
@@ -90,17 +90,17 @@ struct wdat_wdt {
struct __packed acpi_table_wdat {
struct acpi_table_header header; /* Common ACPI table header */
u32 header_length; /* Watchdog Header Length */
- u16 pci_segment; /* PCI Segment number */
- u8 pci_bus; /* PCI Bus number */
- u8 pci_device; /* PCI Device number */
- u8 pci_function; /* PCI Function number */
- u8 reserved[3];
- u32 timer_period; /* Period of one timer count (msec) */
- u32 max_count; /* Maximum counter value supported */
- u32 min_count; /* Minimum counter value */
- u8 flags;
- u8 reserved2[3];
- u32 nr_entries; /* Number of watchdog entries that follow */
+ u16 pci_segment; /* PCI Segment number */
+ u8 pci_bus; /* PCI Bus number */
+ u8 pci_device; /* PCI Device number */
+ u8 pci_function; /* PCI Function number */
+ u8 reserved[3];
+ u32 timer_period; /* Period of one timer count (msec) */
+ u32 max_count; /* Maximum counter value supported */
+ u32 min_count; /* Minimum counter value */
+ u8 flags;
+ u8 reserved2[3];
+ u32 nr_entries; /* Number of watchdog entries that follow */
struct acpi_wdat_entry entries[];
};