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

Commit 00940a23 authored by Rafał Miłecki's avatar Rafał Miłecki Committed by Artem Bityutskiy
Browse files

mtd: bcm47xxnflash: enable BCM4706 driver

parent 3c01d4cb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
bcm47xxnflash-y				+= main.o
bcm47xxnflash-				+= ops_bcm4706.o
bcm47xxnflash-y				+= ops_bcm4706.o

obj-$(CONFIG_MTD_NAND_BCM47XXNFLASH)	+= bcm47xxnflash.o
+2 −0
Original line number Diff line number Diff line
@@ -17,4 +17,6 @@ struct bcm47xxnflash {
	u8 id_data[8];
};

int bcm47xxnflash_ops_bcm4706_init(struct bcm47xxnflash *b47n);

#endif /* BCM47XXNFLASH */
+2 −2
Original line number Diff line number Diff line
@@ -40,8 +40,8 @@ static int bcm47xxnflash_probe(struct platform_device *pdev)
	b47n->mtd.priv = &b47n->nand_chip; /* Required */
	b47n->cc = container_of(nflash, struct bcma_drv_cc, nflash);

	if (0) {
		/* TODO: init device */
	if (b47n->cc->core->bus->chipinfo.id == BCMA_CHIP_ID_BCM4706) {
		err = bcm47xxnflash_ops_bcm4706_init(b47n);
	} else {
		pr_err("Device not supported\n");
		err = -ENOTSUPP;