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

Commit 98444d3d authored by Sascha Sommer's avatar Sascha Sommer Committed by Pierre Ossman
Browse files

sdricoh_cs: Add support for Bay Controller devices



Some Ricoh SD card readers seems to advertise themselves slightly differently.
This patches the driver to will recognise an additional product id, and it
appears to work perfectly.

  % pccardctl info
  PRODID_1="RICOH"
  PRODID_2="Bay Controller"
  PRODID_3=""
  PRODID_4=""
  MANFID=0000,0000

Signed-off-by: default avatarCharles Lowe <aquasync@gmail.com>
Acked-by: default avatarSascha Sommer <saschasommer@freenet.de>
Signed-off-by: default avatarPierre Ossman <drzeus@drzeus.cx>
parent 99ba0405
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -82,6 +82,8 @@ static struct pcmcia_device_id pcmcia_ids[] = {
	/* vendor and device strings followed by their crc32 hashes */
	/* vendor and device strings followed by their crc32 hashes */
	PCMCIA_DEVICE_PROD_ID12("RICOH", "Bay1Controller", 0xd9f522ed,
	PCMCIA_DEVICE_PROD_ID12("RICOH", "Bay1Controller", 0xd9f522ed,
				0xc3901202),
				0xc3901202),
	PCMCIA_DEVICE_PROD_ID12("RICOH", "Bay Controller", 0xd9f522ed,
				0xace80909),
	PCMCIA_DEVICE_NULL,
	PCMCIA_DEVICE_NULL,
};
};