ChromeOS: Use common fill_lb_gpio()
Change-Id: I2ba7a1c2b2e6ce2c00c9a2916141bed67930ba2d Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/5586 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@google.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
@@ -36,8 +36,6 @@
|
||||
#include <boot/coreboot_tables.h>
|
||||
|
||||
#define GPIO_COUNT 6
|
||||
#define ACTIVE_LOW 0
|
||||
#define ACTIVE_HIGH 1
|
||||
|
||||
static int get_lid_switch(void)
|
||||
{
|
||||
@@ -50,19 +48,6 @@ static int get_lid_switch(void)
|
||||
#endif
|
||||
}
|
||||
|
||||
static void fill_lb_gpio(struct lb_gpio *gpio, int num,
|
||||
int polarity, const char *name, int force)
|
||||
{
|
||||
memset(gpio, 0, sizeof(*gpio));
|
||||
gpio->port = num;
|
||||
gpio->polarity = polarity;
|
||||
if (force >= 0)
|
||||
gpio->value = force;
|
||||
else if (num >= 0)
|
||||
gpio->value = get_gpio(num);
|
||||
strncpy((char *)gpio->name, name, GPIO_MAX_NAME_LENGTH);
|
||||
}
|
||||
|
||||
void fill_lb_gpios(struct lb_gpios *gpios)
|
||||
{
|
||||
struct lb_gpio *gpio;
|
||||
|
@@ -28,8 +28,6 @@
|
||||
#include <ec/quanta/ene_kb3940q/ec.h>
|
||||
#include "ec.h"
|
||||
|
||||
#define ACTIVE_LOW 0
|
||||
#define ACTIVE_HIGH 1
|
||||
#define WP_GPIO 6
|
||||
#define DEVMODE_GPIO 54
|
||||
#define FORCE_RECOVERY_MODE 0
|
||||
|
@@ -33,8 +33,6 @@
|
||||
#include <boot/coreboot_tables.h>
|
||||
|
||||
#define GPIO_COUNT 6
|
||||
#define ACTIVE_LOW 0
|
||||
#define ACTIVE_HIGH 1
|
||||
|
||||
static int get_lid_switch(void)
|
||||
{
|
||||
@@ -47,19 +45,6 @@ static int get_lid_switch(void)
|
||||
#endif
|
||||
}
|
||||
|
||||
static void fill_lb_gpio(struct lb_gpio *gpio, int num,
|
||||
int polarity, const char *name, int force)
|
||||
{
|
||||
memset(gpio, 0, sizeof(*gpio));
|
||||
gpio->port = num;
|
||||
gpio->polarity = polarity;
|
||||
if (force >= 0)
|
||||
gpio->value = force;
|
||||
else if (num >= 0)
|
||||
gpio->value = get_gpio(num);
|
||||
strncpy((char *)gpio->name, name, GPIO_MAX_NAME_LENGTH);
|
||||
}
|
||||
|
||||
void fill_lb_gpios(struct lb_gpios *gpios)
|
||||
{
|
||||
struct lb_gpio *gpio;
|
||||
|
@@ -30,8 +30,6 @@
|
||||
#include <boot/coreboot_tables.h>
|
||||
|
||||
#define GPIO_COUNT 6
|
||||
#define ACTIVE_LOW 0
|
||||
#define ACTIVE_HIGH 1
|
||||
|
||||
static int get_lid_switch(void)
|
||||
{
|
||||
|
@@ -28,8 +28,6 @@
|
||||
#include <ec/compal/ene932/ec.h>
|
||||
#include "ec.h"
|
||||
|
||||
#define ACTIVE_LOW 0
|
||||
#define ACTIVE_HIGH 1
|
||||
|
||||
#ifndef __PRE_RAM__
|
||||
#include <boot/coreboot_tables.h>
|
||||
|
@@ -33,8 +33,6 @@
|
||||
#include <boot/coreboot_tables.h>
|
||||
|
||||
#define GPIO_COUNT 6
|
||||
#define ACTIVE_LOW 0
|
||||
#define ACTIVE_HIGH 1
|
||||
|
||||
static int get_lid_switch(void)
|
||||
{
|
||||
@@ -47,19 +45,6 @@ static int get_lid_switch(void)
|
||||
#endif
|
||||
}
|
||||
|
||||
static void fill_lb_gpio(struct lb_gpio *gpio, int num,
|
||||
int polarity, const char *name, int force)
|
||||
{
|
||||
memset(gpio, 0, sizeof(*gpio));
|
||||
gpio->port = num;
|
||||
gpio->polarity = polarity;
|
||||
if (force >= 0)
|
||||
gpio->value = force;
|
||||
else if (num >= 0)
|
||||
gpio->value = get_gpio(num);
|
||||
strncpy((char *)gpio->name, name, GPIO_MAX_NAME_LENGTH);
|
||||
}
|
||||
|
||||
void fill_lb_gpios(struct lb_gpios *gpios)
|
||||
{
|
||||
struct lb_gpio *gpio;
|
||||
|
@@ -26,11 +26,6 @@
|
||||
#include <cpu/samsung/exynos5420/cpu.h>
|
||||
#include <cpu/samsung/exynos5420/gpio.h>
|
||||
|
||||
enum {
|
||||
ACTIVE_LOW = 0,
|
||||
ACTIVE_HIGH = 1
|
||||
};
|
||||
|
||||
void fill_lb_gpios(struct lb_gpios *gpios)
|
||||
{
|
||||
int count = 0;
|
||||
|
@@ -36,8 +36,6 @@
|
||||
#include <boot/coreboot_tables.h>
|
||||
|
||||
#define GPIO_COUNT 6
|
||||
#define ACTIVE_LOW 0
|
||||
#define ACTIVE_HIGH 1
|
||||
|
||||
static int get_lid_switch(void)
|
||||
{
|
||||
@@ -51,17 +49,6 @@ static int get_lid_switch(void)
|
||||
#endif
|
||||
}
|
||||
|
||||
static void fill_lb_gpio(struct lb_gpio *gpio, int port, int polarity,
|
||||
const char *name, int force)
|
||||
{
|
||||
memset(gpio, 0, sizeof(*gpio));
|
||||
gpio->port = port;
|
||||
gpio->polarity = polarity;
|
||||
if (force >= 0)
|
||||
gpio->value = force;
|
||||
strncpy((char *)gpio->name, name, GPIO_MAX_NAME_LENGTH);
|
||||
}
|
||||
|
||||
void fill_lb_gpios(struct lb_gpios *gpios)
|
||||
{
|
||||
struct lb_gpio *gpio;
|
||||
|
@@ -33,8 +33,6 @@
|
||||
#include <boot/coreboot_tables.h>
|
||||
|
||||
#define GPIO_COUNT 6
|
||||
#define ACTIVE_LOW 0
|
||||
#define ACTIVE_HIGH 1
|
||||
|
||||
static int get_lid_switch(void)
|
||||
{
|
||||
@@ -47,19 +45,6 @@ static int get_lid_switch(void)
|
||||
#endif
|
||||
}
|
||||
|
||||
static void fill_lb_gpio(struct lb_gpio *gpio, int num,
|
||||
int polarity, const char *name, int force)
|
||||
{
|
||||
memset(gpio, 0, sizeof(*gpio));
|
||||
gpio->port = num;
|
||||
gpio->polarity = polarity;
|
||||
if (force >= 0)
|
||||
gpio->value = force;
|
||||
else if (num >= 0)
|
||||
gpio->value = get_gpio(num);
|
||||
strncpy((char *)gpio->name, name, GPIO_MAX_NAME_LENGTH);
|
||||
}
|
||||
|
||||
void fill_lb_gpios(struct lb_gpios *gpios)
|
||||
{
|
||||
struct lb_gpio *gpio;
|
||||
|
@@ -26,11 +26,6 @@
|
||||
#include <cpu/samsung/exynos5250/cpu.h>
|
||||
#include <cpu/samsung/exynos5250/gpio.h>
|
||||
|
||||
enum {
|
||||
ACTIVE_LOW = 0,
|
||||
ACTIVE_HIGH = 1
|
||||
};
|
||||
|
||||
void fill_lb_gpios(struct lb_gpios *gpios)
|
||||
{
|
||||
int count = 0;
|
||||
|
@@ -32,8 +32,6 @@
|
||||
#include <boot/coreboot_tables.h>
|
||||
|
||||
#define GPIO_COUNT 7
|
||||
#define ACTIVE_LOW 0
|
||||
#define ACTIVE_HIGH 1
|
||||
|
||||
void fill_lb_gpios(struct lb_gpios *gpios)
|
||||
{
|
||||
|
@@ -29,8 +29,6 @@
|
||||
#include <boot/coreboot_tables.h>
|
||||
|
||||
#define GPIO_COUNT 6
|
||||
#define ACTIVE_LOW 0
|
||||
#define ACTIVE_HIGH 1
|
||||
|
||||
void fill_lb_gpios(struct lb_gpios *gpios)
|
||||
{
|
||||
|
@@ -28,8 +28,6 @@
|
||||
#include <boot/coreboot_tables.h>
|
||||
|
||||
#define GPIO_COUNT 6
|
||||
#define ACTIVE_LOW 0
|
||||
#define ACTIVE_HIGH 1
|
||||
|
||||
void fill_lb_gpios(struct lb_gpios *gpios)
|
||||
{
|
||||
|
@@ -32,21 +32,6 @@
|
||||
#include <boot/coreboot_tables.h>
|
||||
|
||||
#define GPIO_COUNT 6
|
||||
#define ACTIVE_LOW 0
|
||||
#define ACTIVE_HIGH 1
|
||||
|
||||
static void fill_lb_gpio(struct lb_gpio *gpio, int num,
|
||||
int polarity, const char *name, int force)
|
||||
{
|
||||
memset(gpio, 0, sizeof(*gpio));
|
||||
gpio->port = num;
|
||||
gpio->polarity = polarity;
|
||||
if (force >= 0)
|
||||
gpio->value = force;
|
||||
else if (num >= 0)
|
||||
gpio->value = get_gpio(num);
|
||||
strncpy((char *)gpio->name, name, GPIO_MAX_NAME_LENGTH);
|
||||
}
|
||||
|
||||
void fill_lb_gpios(struct lb_gpios *gpios)
|
||||
{
|
||||
|
@@ -39,8 +39,6 @@
|
||||
#include <ec/smsc/mec1308/ec.h>
|
||||
|
||||
#define GPIO_COUNT 6
|
||||
#define ACTIVE_LOW 0
|
||||
#define ACTIVE_HIGH 1
|
||||
|
||||
void fill_lb_gpios(struct lb_gpios *gpios)
|
||||
{
|
||||
|
@@ -36,8 +36,6 @@
|
||||
#include <boot/coreboot_tables.h>
|
||||
|
||||
#define GPIO_COUNT 6
|
||||
#define ACTIVE_LOW 0
|
||||
#define ACTIVE_HIGH 1
|
||||
|
||||
void fill_lb_gpios(struct lb_gpios *gpios)
|
||||
{
|
||||
|
Reference in New Issue
Block a user