From 4c75e72cde9074509e8a5bd1e08d3f6b3b1c898e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 10 Jun 2010 10:56:05 +0000 Subject: [PATCH] * Fixed style violations introduced by Rudolf. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37083 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/kernel/bus_managers/ps2/ps2_standard_mouse.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/add-ons/kernel/bus_managers/ps2/ps2_standard_mouse.c b/src/add-ons/kernel/bus_managers/ps2/ps2_standard_mouse.c index 67ec81ddce..d6833b2760 100644 --- a/src/add-ons/kernel/bus_managers/ps2/ps2_standard_mouse.c +++ b/src/add-ons/kernel/bus_managers/ps2/ps2_standard_mouse.c @@ -10,6 +10,7 @@ * Clemens Zeidler */ + /*! PS/2 mouse device driver A PS/2 mouse is connected to the IBM 8042 controller, and gets its @@ -300,8 +301,8 @@ probe_standard_mouse(ps2_dev * dev) } } - if ((deviceId == PS2_DEV_ID_STANDARD) || - (deviceId == PS2_DEV_ID_TOUCHPAD_RICATECH)) { + if (deviceId == PS2_DEV_ID_STANDARD + || deviceId == PS2_DEV_ID_TOUCHPAD_RICATECH) { INFO("ps2: probe_mouse Standard PS/2 mouse found\n"); dev->name = kStandardMousePath[dev->idx]; dev->packet_size = PS2_PACKET_STANDARD;