drm/i915: Remove excess inline keywords

Remove some inline keywords. One of the functions has clearly outgrown
it anyway, so let's just leave it to the compiler.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
Ville Syrjälä 2015-05-11 20:49:09 +03:00 committed by Daniel Vetter
parent f3e06f1156
commit 8fc3b42ef3

View File

@ -1386,7 +1386,7 @@ static int i915_port_to_hotplug_shift(enum port port)
}
}
static inline enum port get_port_from_pin(enum hpd_pin pin)
static enum port get_port_from_pin(enum hpd_pin pin)
{
switch (pin) {
case HPD_PORT_B:
@ -1400,10 +1400,10 @@ static inline enum port get_port_from_pin(enum hpd_pin pin)
}
}
static inline void intel_hpd_irq_handler(struct drm_device *dev,
u32 hotplug_trigger,
u32 dig_hotplug_reg,
const u32 hpd[HPD_NUM_PINS])
static void intel_hpd_irq_handler(struct drm_device *dev,
u32 hotplug_trigger,
u32 dig_hotplug_reg,
const u32 hpd[HPD_NUM_PINS])
{
struct drm_i915_private *dev_priv = dev->dev_private;
int i;