Done with sed and God Lines. Only done for C-like code for now. Change-Id: I3fdfa159194cccf15c0284700f554d2241dad6cd Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40217 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <felixsinger@posteo.net>
37 lines
918 B
C
37 lines
918 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* This file is part of the coreboot project. */
|
|
|
|
#include <commonlib/sdhci.h>
|
|
#include <commonlib/storage.h>
|
|
#include <device/device.h>
|
|
#include <device/pci.h>
|
|
#include <device/pci_ids.h>
|
|
#include <soc/storage_test.h>
|
|
|
|
static void init(struct device *dev)
|
|
{
|
|
/* Run the SD test */
|
|
if (CONFIG(STORAGE_TEST)) {
|
|
uint32_t bar;
|
|
uint32_t previous_bar;
|
|
uint16_t previous_command;
|
|
|
|
bar = storage_test_init(dev, &previous_bar, &previous_command);
|
|
storage_test(bar, 0);
|
|
storage_test_complete(dev, previous_bar, previous_command);
|
|
}
|
|
}
|
|
|
|
static const struct device_operations device_ops = {
|
|
.read_resources = pci_dev_read_resources,
|
|
.set_resources = pci_dev_set_resources,
|
|
.enable_resources = pci_dev_enable_resources,
|
|
.init = init,
|
|
};
|
|
|
|
static const struct pci_driver pmc __pci_driver = {
|
|
.ops = &device_ops,
|
|
.vendor = PCI_VENDOR_ID_INTEL,
|
|
.device = 0x08A7,
|
|
};
|