Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 903dba1e authored by Jean Delvare's avatar Jean Delvare Committed by Takashi Iwai
Browse files

ALSA: keywest: Get rid of useless i2c_device_name() macro



The i2c_device_name() macro is used only once and doesn't have much
value, it hurts redability more than it helps. Get rid of it.

Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent a4d7749b
Loading
Loading
Loading
Loading
+1 −5
Original line number Original line Diff line number Diff line
@@ -33,10 +33,6 @@
static struct pmac_keywest *keywest_ctx;
static struct pmac_keywest *keywest_ctx;




#ifndef i2c_device_name
#define i2c_device_name(x)	((x)->name)
#endif

static int keywest_probe(struct i2c_client *client,
static int keywest_probe(struct i2c_client *client,
			 const struct i2c_device_id *id)
			 const struct i2c_device_id *id)
{
{
@@ -56,7 +52,7 @@ static int keywest_attach_adapter(struct i2c_adapter *adapter)
	if (! keywest_ctx)
	if (! keywest_ctx)
		return -EINVAL;
		return -EINVAL;


	if (strncmp(i2c_device_name(adapter), "mac-io", 6))
	if (strncmp(adapter->name, "mac-io", 6))
		return 0; /* ignored */
		return 0; /* ignored */


	memset(&info, 0, sizeof(struct i2c_board_info));
	memset(&info, 0, sizeof(struct i2c_board_info));