src/drivers: Drop unneeded empty lines

Change-Id: I202e5d285612b9bf237b588ea3c006187623fdc3
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/44609
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
This commit is contained in:
Elyes HAOUAS
2020-08-19 21:51:08 +02:00
committed by Michael Niewöhner
parent 490546f191
commit d161a2fafd
46 changed files with 0 additions and 75 deletions

View File

@@ -77,7 +77,6 @@ unsigned long calibrate_tsc_with_pit(void)
if (end.hi)
goto bad_ctc;
/* Error: ECPUTOOSLOW */
if (end.lo <= CALIBRATE_DIVISOR)
goto bad_ctc;

View File

@@ -32,7 +32,6 @@
#define DMA_AUTOINIT 0x10
void isa_dma_init(void)
{
/* slave at 0x00 - 0x0f */

View File

@@ -5,7 +5,6 @@
#define SPEAKER_PIT_FREQUENCY 0x1234dd
enum {
PIT_COUNTER_0 = 0x40,
PIT_COUNTER_1 = 0x41,
@@ -14,7 +13,6 @@ enum {
PIT_SPEAKER_PORT = 0x61,
};
enum {
PIT_SPK_TMR2 = 0x01,
PIT_SPK_DATA = 0x02,
@@ -44,13 +42,11 @@ enum {
PIT_CTRL_HARDSTROBE = 0x0a,
PIT_CTRL_COUNT_MASK = 0x01,
PIT_CTRL_COUNT_BINARY = 0x00,
PIT_CTRL_COUNT_BCD = 0x01
};
static void
make_tone(uint16_t freq_count, unsigned int duration)
{

View File

@@ -228,7 +228,6 @@ int cmos_lb_cks_valid(void)
return cmos_checksum_valid(LB_CKS_RANGE_START, LB_CKS_RANGE_END, LB_CKS_LOC);
}
void sanitize_cmos(void)
{
const unsigned char *cmos_default;