Fix up Maxim MAX77686 driver
... to fit into the naming convention Change-Id: I4a7d81c4d6674d001fc831df863bd2343f6c636f Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/2020 Reviewed-by: Ronald G. Minnich <rminnich@gmail.com> Tested-by: build bot (Jenkins)
This commit is contained in:
parent
0dbb329b7d
commit
de48f0fd42
|
@ -29,7 +29,7 @@
|
|||
#include <cpu/samsung/exynos5250/power.h>
|
||||
#include <cpu/samsung/exynos5250/sysreg.h>
|
||||
#include <cpu/samsung/exynos5-common/spl.h>
|
||||
#include <drivers/power/max77686.h>
|
||||
#include <drivers/maxim/max77686/max77686.h>
|
||||
|
||||
static void ps_hold_setup(void)
|
||||
{
|
||||
|
|
|
@ -25,6 +25,7 @@ source src/drivers/generic/Kconfig
|
|||
source src/drivers/i2c/Kconfig
|
||||
source src/drivers/ics/Kconfig
|
||||
source src/drivers/ipmi/Kconfig
|
||||
source src/drivers/maxim/Kconfig
|
||||
source src/drivers/oxford/Kconfig
|
||||
if PC80_SYSTEM
|
||||
source src/drivers/pc80/Kconfig
|
||||
|
|
|
@ -22,6 +22,7 @@ subdirs-y += dec
|
|||
subdirs-y += emulation
|
||||
subdirs-y += generic
|
||||
subdirs-y += i2c
|
||||
subdirs-y += maxim
|
||||
subdirs-y += oxford
|
||||
subdirs-y += realtek
|
||||
subdirs-y += sil
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
##
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## Copyright (C) 2012 The Chromium OS Authors.
|
||||
##
|
||||
## This program is free software; you can redistribute it and/or modify
|
||||
## it under the terms of the GNU General Public License as published by
|
||||
## the Free Software Foundation; version 2 of the License.
|
||||
##
|
||||
## This program is distributed in the hope that it will be useful,
|
||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
## GNU General Public License for more details.
|
||||
##
|
||||
## You should have received a copy of the GNU General Public License
|
||||
## along with this program; if not, write to the Free Software
|
||||
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
##
|
||||
|
||||
source src/drivers/maxim/max77686/Kconfig
|
|
@ -0,0 +1,20 @@
|
|||
##
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## Copyright (C) 2012 The Chromium OS Authors.
|
||||
##
|
||||
## This program is free software; you can redistribute it and/or modify
|
||||
## it under the terms of the GNU General Public License as published by
|
||||
## the Free Software Foundation; version 2 of the License.
|
||||
##
|
||||
## This program is distributed in the hope that it will be useful,
|
||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
## GNU General Public License for more details.
|
||||
##
|
||||
## You should have received a copy of the GNU General Public License
|
||||
## along with this program; if not, write to the Free Software
|
||||
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
##
|
||||
|
||||
subdirs-$(CONFIG_DRIVERS_MAXIM_MAX77676) += max77686
|
|
@ -0,0 +1,24 @@
|
|||
##
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## Copyright (C) 2012 The ChromiumOS Authors
|
||||
##
|
||||
## This program is free software; you can redistribute it and/or modify
|
||||
## it under the terms of the GNU General Public License as published by
|
||||
## the Free Software Foundation; version 2 of the License.
|
||||
##
|
||||
## This program is distributed in the hope that it will be useful,
|
||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
## GNU General Public License for more details.
|
||||
##
|
||||
## You should have received a copy of the GNU General Public License
|
||||
## along with this program; if not, write to the Free Software
|
||||
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
##
|
||||
|
||||
config DRIVER_MAXIM_77686
|
||||
bool
|
||||
default n
|
||||
help
|
||||
Maxim 77686 power regulator
|
|
@ -1,5 +0,0 @@
|
|||
config DRIVER_MAXIM_77686
|
||||
bool "Maxim 77686"
|
||||
default n
|
||||
help
|
||||
Maxim 77686 power regulator
|
Loading…
Reference in New Issue