diff --git a/southbridge/intel/i82371eb/config.h b/southbridge/intel/i82371eb/config.h index f1129c7711..7a1ecb5cfd 100644 --- a/southbridge/intel/i82371eb/config.h +++ b/southbridge/intel/i82371eb/config.h @@ -1,7 +1,9 @@ /* * This file is part of the LinuxBIOS project. * - * Copyright (C) 2007 Ronald G. Minnich + * Copyright (C) 2004 Linux Networx + * Copyright (C) 2005 Bitworks + * Copyright (C) 2007 Ronald G. Minnich * * 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 @@ -21,5 +23,7 @@ extern struct constructor i82371eb_constructors[]; struct southbridge_intel_i82371eb_config { - int ide; + unsigned int ide0_enable : 1; + unsigned int ide1_enable : 1; + }; diff --git a/southbridge/intel/i82371eb/i82371eb.c b/southbridge/intel/i82371eb/i82371eb.c index bf85a3f353..b29030a6db 100644 --- a/southbridge/intel/i82371eb/i82371eb.c +++ b/southbridge/intel/i82371eb/i82371eb.c @@ -1,7 +1,9 @@ /* * This file is part of the LinuxBIOS project. * - * Copyright (C) 2007 Ronald G. Minnich + * Copyright (C) 2004 Linux Networx + * Copyright (C) 2005 Bitworks + * Copyright (C) 2007 Ronald G. Minnich * * 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 @@ -28,6 +30,9 @@ // #include "i82371eb.h" /* The plain PCI device uses the standard PCI operations. */ +/* TODO: bring in the rest of the v2 code for controlling IDE enable. + * This is just placeholder code for now + */ /* Note that this structure is not necessary (yet), * but is here as an example of how you can set up your own ops.