mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-01 07:42:18 +00:00
84ba5b15ac
* Enhance GPIO addon for Noctua Fans for the Qortector upcoming case. This will put PWM signal to real-time. * Fixed RDP not letting a user login if not logged out on Cinnamon release (reported by Crowetic) * Update i2c sensor db * Fixed DRM broadcast over HDMI 2+ * Ease up DHCP security only to prevent Brooklyn blocking routers. * Add possibility to add extra memory for Cinnamon Desktop Release * Fix error message of Software Render mode on Cinnamon Desktop * Add proper offset for HD screens for pixel array *Fixed HDMI jitter for videocore4 GPU * Enable all radios (including Bluetooth)
37 lines
863 B
C
37 lines
863 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Helper module for board specific I2C bus registration
|
|
*
|
|
* Copyright (C) 2009 Nokia Corporation.
|
|
*/
|
|
|
|
#ifndef __ARCH_ARM_MACH_OMAP1_I2C_H
|
|
#define __ARCH_ARM_MACH_OMAP1_I2C_H
|
|
|
|
struct i2c_board_info;
|
|
struct omap_i2c_bus_platform_data;
|
|
|
|
int omap_i2c_add_bus(struct omap_i2c_bus_platform_data *i2c_pdata,
|
|
int bus_id);
|
|
|
|
#if defined(CONFIG_I2C_OMAP) || defined(CONFIG_I2C_OMAP_MODULE)
|
|
extern int omap_register_i2c_bus(int bus_id, u32 clkrate,
|
|
struct i2c_board_info const *info,
|
|
unsigned len);
|
|
extern int omap_register_i2c_bus_cmdline(void);
|
|
#else
|
|
static inline int omap_register_i2c_bus(int bus_id, u32 clkrate,
|
|
struct i2c_board_info const *info,
|
|
unsigned len)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline int omap_register_i2c_bus_cmdline(void)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
#endif /* __ARCH_ARM_MACH_OMAP1_I2C_H */
|