Author: uwe Date: 2007-06-07 02:07:39 +0200 (Thu, 07 Jun 2007) New Revision: 348
Modified: LinuxBIOSv3/device/device.c LinuxBIOSv3/device/pci_device.c LinuxBIOSv3/southbridge/amd/cs5536/smbus_initram.c LinuxBIOSv3/util/x86emu/pcbios/pcibios.h Log: Fix various Doxygen warnings (trivial).
Signed-off-by: Uwe Hermann uwe@hermann-uwe.de Acked-by: Uwe Hermann uwe@hermann-uwe.de
Modified: LinuxBIOSv3/device/device.c =================================================================== --- LinuxBIOSv3/device/device.c 2007-06-06 23:43:11 UTC (rev 347) +++ LinuxBIOSv3/device/device.c 2007-06-07 00:07:39 UTC (rev 348) @@ -166,6 +166,7 @@ * * @param parent Parent bus the newly created device is attached to. * @param path Path to the device to be created. + * @param devid TODO * @return Pointer to the newly created device structure. * @see device_path */ @@ -739,7 +740,7 @@ * bridges. If the setting up and tuning of the bus causes a reset to be * required, reset the bus and scan it again. * - * @param bus Pointer to the bus device. + * @param busdevice Pointer to the bus device. * @param max Current bus number. * @return The maximum bus number found, after scanning all subordinate buses. */
Modified: LinuxBIOSv3/device/pci_device.c =================================================================== --- LinuxBIOSv3/device/pci_device.c 2007-06-06 23:43:11 UTC (rev 347) +++ LinuxBIOSv3/device/pci_device.c 2007-06-07 00:07:39 UTC (rev 348) @@ -150,7 +150,6 @@ * Given a device and register, read the size of the BAR for that register. * * @param dev Pointer to the device structure. - * @param resource Pointer to the resource structure. * @param index Address of the PCI configuration register. */ struct resource *pci_get_resource(struct device *dev, unsigned long index)
Modified: LinuxBIOSv3/southbridge/amd/cs5536/smbus_initram.c =================================================================== --- LinuxBIOSv3/southbridge/amd/cs5536/smbus_initram.c 2007-06-06 23:43:11 UTC (rev 347) +++ LinuxBIOSv3/southbridge/amd/cs5536/smbus_initram.c 2007-06-07 00:07:39 UTC (rev 348) @@ -249,7 +249,7 @@ * * @param smbus_io_base The SMBus I/O base. * @param device The device. - * @param command The command. + * @param address The address. * @return The data from the SMBus packet area. */ static u8 do_smbus_read_byte(u16 smbus_io_base, u8 device, u8 address) @@ -315,7 +315,7 @@ * one thing -- calling this function to read DRAM parameters. * * @param device The device. - * @param command The command. + * @param address The address. * @return The data from the SMBus packet area or an error of 0xff (i.e. -1). */ int smbus_read_byte(u16 device, u8 address)
Modified: LinuxBIOSv3/util/x86emu/pcbios/pcibios.h =================================================================== --- LinuxBIOSv3/util/x86emu/pcbios/pcibios.h 2007-06-06 23:43:11 UTC (rev 347) +++ LinuxBIOSv3/util/x86emu/pcbios/pcibios.h 2007-06-07 00:07:39 UTC (rev 348) @@ -34,7 +34,9 @@ * 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 - */#ifndef PCI_BIOS_H + */ + +#ifndef PCI_BIOS_H #define PCI_BIOS_H
enum {